Skip to content

Commit

Permalink
Update actions in CI
Browse files Browse the repository at this point in the history
  • Loading branch information
jibsen committed Oct 30, 2023
1 parent bcee5f5 commit 02e07fb
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/parg-ci-workflow.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
cmake-flags: -A x64

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4

- name: Configure
run: cmake -G "${{ matrix.config.generator }}" ${{ matrix.config.cmake-flags }} -B build
Expand Down Expand Up @@ -44,7 +44,7 @@ jobs:
cmake-flags: -DCMAKE_C_FLAGS_DEBUG='-O1 -g -fsanitize=address -fno-omit-frame-pointer'

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4

- name: Configure
run: cmake ${{ matrix.config.cmake-flags }} -DCMAKE_BUILD_TYPE=Debug -B build
Expand All @@ -60,7 +60,7 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4

- name: Configure
run: cmake -DCMAKE_C_FLAGS_DEBUG='-g -O0 --coverage' -DCMAKE_BUILD_TYPE=Debug -B build
Expand All @@ -75,6 +75,6 @@ jobs:
run: cd build && gcov -b CMakeFiles/parg.dir/parg.c.gcno -o CMakeFiles/parg.dir

- name: Upload coverage to Codecov
uses: codecov/codecov-action@v2
uses: codecov/codecov-action@v3
with:
files: ./build/parg.c.gcov

0 comments on commit 02e07fb

Please sign in to comment.