feat: browser support (#894) #2650
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--- | |
name: Build - Ubuntu | |
on: | |
workflow_dispatch: | |
pull_request: | |
push: | |
branches: | |
- main | |
env: | |
VCPKG_ENABLE_METRICS: 1 | |
jobs: | |
job: | |
name: ${{ matrix.os }}-${{ matrix.buildtype }} | |
runs-on: ${{ matrix.os }} | |
strategy: | |
fail-fast: false | |
matrix: | |
os: [ubuntu-22.04, ubuntu-24.04] | |
buildtype: [linux-release, linux-debug] | |
include: | |
- os: ubuntu-22.04 | |
triplet: x64-linux | |
- os: ubuntu-24.04 | |
triplet: x64-linux | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@main | |
- name: Install Linux Dependencies | |
run: > | |
sudo apt-get update && sudo apt-get install ccache libglew-dev libx11-dev linux-headers-$(uname -r) | |
- name: Switch to gcc-12 | |
run: | | |
sudo apt install gcc-12 g++-12 | |
sudo update-alternatives --install /usr/bin/gcc gcc /usr/bin/gcc-12 100 --slave /usr/bin/g++ g++ /usr/bin/g++-12 --slave /usr/bin/gcov gcov /usr/bin/gcov-12 | |
sudo update-alternatives --set gcc /usr/bin/gcc-12 | |
- name: Restore artifacts and install vcpkg | |
id: vcpkg-step | |
run: | | |
vcpkgCommitId=$(grep '.builtin-baseline' vcpkg.json | awk -F: '{print $2}' | tr -d '," ') | |
echo "vcpkg commit ID: $vcpkgCommitId" | |
echo "vcpkgGitCommitId=$vcpkgCommitId" >> "$GITHUB_OUTPUT" | |
- name: Get vcpkg commit id from vcpkg.json | |
uses: lukka/run-vcpkg@main | |
with: | |
vcpkgGitCommitId: ${{ steps.vcpkg-step.outputs.vcpkgGitCommitId }} | |
vcpkgJsonIgnores: "['**/vcpkg/**', '**/browser/overlay-ports/**']" | |
- name: Get latest CMake and ninja | |
uses: lukka/get-cmake@main | |
- name: Run CMake | |
uses: lukka/run-cmake@main | |
with: | |
configurePreset: ${{ matrix.buildtype }} | |
buildPreset: ${{ matrix.buildtype }} | |
- name: Create and Upload Artifact | |
if: ${{ github.event_name != 'pull_request' }} | |
uses: actions/upload-artifact@main | |
with: | |
name: otclient-${{ matrix.os }}-${{ matrix.buildtype }}-${{ github.sha }} | |
path: | | |
${{ github.workspace }}/otclient |