Build #12
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 | |
on: | |
workflow_dispatch: | |
env: | |
VCPKG_BINARY_SOURCES: "clear;x-gha,readwrite" | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Export GitHub Actions cache environment variables | |
uses: actions/github-script@v7 | |
with: | |
script: | | |
core.exportVariable('ACTIONS_CACHE_URL', process.env.ACTIONS_CACHE_URL || ''); | |
core.exportVariable('ACTIONS_RUNTIME_TOKEN', process.env.ACTIONS_RUNTIME_TOKEN || ''); | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
- name: Cache apt packages | |
uses: actions/cache@v3 | |
with: | |
path: | | |
/var/cache/apt | |
/var/lib/apt/lists | |
key: ${{ runner.os }}-apt-${{ hashFiles('apt-packages.txt') }} | |
restore-keys: | | |
${{ runner.os }}-apt- | |
- name: Update apt and install packages | |
run: | | |
sudo apt-get update | |
sudo apt-get install -y $(cat apt-packages.txt) | |
env: | |
DEBIAN_FRONTEND: noninteractive | |
- name: Create a list of apt packages | |
run: echo "libxinerama-dev libxcursor-dev xorg-dev libglu1-mesa-dev pkg-config build-essential" > apt-packages.txt | |
- name: Clone vcpkg | |
run: git clone https://github.com/microsoft/vcpkg.git | |
- name: Bootstrap vcpkg | |
run: ./vcpkg/bootstrap-vcpkg.sh -disableMetrics | |
- name: Install dependencies | |
run: ./vcpkg/vcpkg install | |
- name: Build the project | |
run: make only_build |