Skip to content

Commit

Permalink
up ci
Browse files Browse the repository at this point in the history
  • Loading branch information
vincentchabannes committed Aug 21, 2024
1 parent c8ca7b0 commit 8ac460f
Showing 1 changed file with 9 additions and 3 deletions.
12 changes: 9 additions & 3 deletions .github/workflows/cmake.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,11 +12,18 @@ env:

jobs:
build:
strategy:
matrix:
include:
- { os: ubuntu-22.04 }
- { os: ubuntu-24.04 }
runs-on: ${{ matrix.os }}

# The CMake configure and build commands are platform agnostic and should work equally
# well on Windows or Mac. You can convert this to a matrix build if you need
# cross-platform coverage.
# See: https://docs.github.com/en/free-pro-team@latest/actions/learn-github-actions/managing-complex-workflows#using-a-build-matrix
runs-on: ubuntu-latest
# runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v2
Expand All @@ -32,7 +39,6 @@ jobs:

- name: Test
working-directory: ${{github.workspace}}/build
# Execute tests defined by the CMake configuration.
# Execute tests defined by the CMake configuration.
# See https://cmake.org/cmake/help/latest/manual/ctest.1.html for more detail
run: ctest -C ${{env.BUILD_TYPE}}

0 comments on commit 8ac460f

Please sign in to comment.