From 93e1cb1d7e59f99cca65b14697c35494d73acb25 Mon Sep 17 00:00:00 2001 From: Andrew Clemons Date: Wed, 11 Dec 2024 20:10:55 +0900 Subject: [PATCH] Setup tests to run all multiple ubuntu versions. We have some compile issues on 24.04. The open issue #41 is tracking this. We'll enable 24.04 when we commit the fix for that issue. --- .github/workflows/build.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 304924d..3fdddb3 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -6,11 +6,12 @@ on: branches: [ master ] jobs: build: - runs-on: ubuntu-20.04 strategy: matrix: jdk: ['7', '8', '11', '17', '21'] cc: [gcc, clang] + os: [ubuntu-20.04, ubuntu-22.04] + runs-on: ${{ matrix.os }} steps: - name: Check out code uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2