From 35152890868b5130dea3af163f3892b8e0b56fc3 Mon Sep 17 00:00:00 2001 From: Vincent Rischmann Date: Sat, 7 Dec 2024 22:49:47 +0100 Subject: ci: run with ubuntu 24.04 --- .github/workflows/main.yml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 8d3162e..923e9f1 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -17,7 +17,7 @@ concurrency: jobs: lint: - runs-on: ubuntu-latest + runs-on: ubuntu-24.04 steps: - uses: actions/checkout@v4 - uses: goto-bus-stop/setup-zig@v2 @@ -29,7 +29,7 @@ jobs: strategy: fail-fast: false matrix: - os: [ubuntu-latest, windows-latest, macos-latest] + os: [ubuntu-24.04, windows-latest, macos-latest] runs-on: ${{ matrix.os }} steps: - name: Checkout repository @@ -41,7 +41,7 @@ jobs: version: master - name: Install qemu - if: ${{ matrix.os == 'ubuntu-latest' }} + if: ${{ matrix.os == 'ubuntu-24.04' }} run: | sudo apt-get update -y && sudo apt-get install -y qemu-user-binfmt @@ -55,14 +55,14 @@ jobs: restore-keys: ${{ runner.os }}-${{ matrix.os }}-zig- - name: Run Tests in memory - if: ${{ matrix.os == 'ubuntu-latest' }} + if: ${{ matrix.os == 'ubuntu-24.04' }} run: zig build test -Dci=true -Din_memory=true --summary all -fqemu -fwine - name: Run Tests in memory - if: ${{ matrix.os != 'ubuntu-latest' }} + if: ${{ matrix.os != 'ubuntu-24.04' }} run: zig build test -Dci=true -Din_memory=true --summary all test-loadable-extension: - runs-on: ubuntu-latest + runs-on: ubuntu-24.04 steps: - name: Checkout repository uses: actions/checkout@v4 -- cgit v1.2.3