Skip to content

Commit 6ff8fc9

Browse files
authored
[CI] Apply small fixes for codecov job (embedded-dev-research#246)
- remove repeated checkout - set "RelWithDebInfo" cmake build type for the consistency (before it was unset)
1 parent 7becd1d commit 6ff8fc9

File tree

1 file changed

+1
-5
lines changed

1 file changed

+1
-5
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -203,9 +203,6 @@ jobs:
203203
submodules: true
204204
- name: Install dependencies
205205
run: sudo apt-get update && sudo apt-get install -y gcovr
206-
- uses: actions/checkout@v4
207-
with:
208-
submodules: true
209206
- name: Setup ccache
210207
uses: hendrikmuhs/ccache-action@v1.2
211208
with:
@@ -218,8 +215,7 @@ jobs:
218215
-DCMAKE_CXX_COMPILER_LAUNCHER=ccache \
219216
-DCMAKE_C_FLAGS="--coverage" \
220217
-DCMAKE_CXX_FLAGS="--coverage" \
221-
-DCMAKE_BUILD_TYPE=${{ matrix.build_type }} \
222-
-DCMAKE_BUILD_TYPE=${{ matrix.build_type }}
218+
-DCMAKE_BUILD_TYPE=RelWithDebInfo
223219
cmake --build build --parallel
224220
- name: Test
225221
run: cmake --build build -t test

0 commit comments

Comments
 (0)