Skip to content

Commit

Permalink
fix builds and coverage
Browse files Browse the repository at this point in the history
  • Loading branch information
cppden committed Aug 24, 2024
1 parent e9bcbf7 commit 038b088
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 7 deletions.
5 changes: 2 additions & 3 deletions .github/workflows/coverage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ on: [push, pull_request]

jobs:
code-coverage:
runs-on: ubuntu-22.04
runs-on: ubuntu-latest

strategy:
fail-fast: false
Expand All @@ -17,13 +17,12 @@ jobs:
CXX: ${{ matrix.compiler }}

steps:
- uses: actions/checkout@v3
- run: |
sudo apt-get update
sudo apt-get -y --no-upgrade install ${{ matrix.compiler }}
sudo apt-get install -y libgtest-dev
- uses: actions/checkout@v2

- run: cmake -E make_directory build

- working-directory: build/
Expand Down
7 changes: 3 additions & 4 deletions .github/workflows/linux.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,27 +14,26 @@ on:

jobs:
linux:
runs-on: ubuntu-22.04
runs-on: ubuntu-latest

strategy:
fail-fast: false
matrix:
compiler:
- g++-12
- clang++-14
- clang++-15
build_type: [Release]

env:
CXX: ${{ matrix.compiler }}

steps:
- uses: actions/checkout@v3
- run: |
sudo apt-get update
sudo apt-get -y --no-upgrade install ${{ matrix.compiler }}
sudo apt-get -y install libgtest-dev
- uses: actions/checkout@v3

- run: cmake -E make_directory build

- working-directory: build/
Expand Down

0 comments on commit 038b088

Please sign in to comment.