From cada1bcfd83f93238b84b103fa70a7a25938ac8f Mon Sep 17 00:00:00 2001 From: CakeLancelot Date: Mon, 14 Oct 2024 22:48:41 -0500 Subject: [PATCH] Update check-builds.yaml * Install SQLite3 headers as they arent included in the Ubuntu 24.04 image (only includes CLI currently): https://github.com/actions/runner-images/blob/main/images/ubuntu/Ubuntu2404-Readme.md * Change copy-artifacts task to also use ubuntu-latest --- .github/workflows/check-builds.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/check-builds.yaml b/.github/workflows/check-builds.yaml index 1d967bc..9e1b287 100644 --- a/.github/workflows/check-builds.yaml +++ b/.github/workflows/check-builds.yaml @@ -29,7 +29,7 @@ jobs: submodules: recursive fetch-depth: 0 - name: Install dependencies - run: sudo apt install clang cmake snap -y && sudo snap install powershell --classic + run: sudo apt install clang cmake snap libsqlite3-dev -y && sudo snap install powershell --classic - name: Check compilation run: | $versions = "104", "728", "1013" @@ -113,7 +113,7 @@ jobs: copy-artifacts: if: github.event_name != 'pull_request' && github.ref == 'refs/heads/master' - runs-on: ubuntu-22.04 + runs-on: ubuntu-latest needs: [windows-build, ubuntu-build] env: BOT_SSH_KEY: ${{ secrets.BOT_SSH_KEY }}