Skip to content

Commit

Permalink
gh: tests: try debugging coveralls
Browse files Browse the repository at this point in the history
Part 1.

Signed-off-by: Matthieu Baerts (NGI0) <[email protected]>
  • Loading branch information
matttbe committed Sep 26, 2024
1 parent b32401a commit 1d84662
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ jobs:
strategy:
fail-fast: false
matrix:
mode: ['normal', 'debug', 'btf']
mode: ['btf'] # ['normal', 'debug', 'btf']
permissions:
contents: read # to fetch code (actions/checkout)

Expand Down Expand Up @@ -153,12 +153,12 @@ jobs:
- name: Coveralls Parallel
uses: coverallsapp/github-action@v2
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
# github-token: ${{ secrets.GITHUB_TOKEN }}
flag-name: ${{ matrix.mode }}
parallel: true
file: kernel.lcov
format: lcov
allow-empty: true
# allow-empty: true
compare-ref: ${{ steps.branch.outputs.name }}
debug: true

Expand Down Expand Up @@ -204,9 +204,9 @@ jobs:
- name: Coveralls Finished
uses: coverallsapp/github-action@v2
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
# github-token: ${{ secrets.GITHUB_TOKEN }}
parallel-finished: true
carryforward: "normal,debug,btf"
carryforward: "btf" # "normal,debug,btf"
debug: true

notif:
Expand Down Expand Up @@ -536,7 +536,7 @@ jobs:
- name: Check Status
run: |
issues=()
for mode in normal debug btf; do
for mode in btf; do # normal debug btf; do
ccl="results-${mode}/conclusion.txt"
if [ ! -f "${ccl}" ] || ! grep -q "Success" "${ccl}"; then
issues+=("${mode}")
Expand Down

0 comments on commit 1d84662

Please sign in to comment.