Skip to content

Commit

Permalink
Corrected path for artifacts in cpp github action
Browse files Browse the repository at this point in the history
  • Loading branch information
christophe0606 committed Jun 25, 2024
1 parent 98c2b3f commit e824bc2
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/runcpptest.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ permissions:
jobs:
CI_cpp_test_run:
strategy:
fail-fast: false
fail-fast: true
matrix:
compiler: [AC6, CLANG, GCC]
core: [M0, M4, M55]
Expand Down Expand Up @@ -71,12 +71,12 @@ jobs:
uses: actions/upload-artifact@v4
with:
name: test-report_${{ matrix.compiler }}_${{ matrix.core }}
path: ${{ matrix.compiler }}_results/errors_${{ matrix.core }}.txt
path: dsppp/${{ matrix.compiler }}_results/errors_${{ matrix.core }}.txt


- name: Check error
run: |
cd dsppp
echo "Checking output..."
test "$(cat ${{ matrix.compiler }}_results/errors_${{ matrix.core }}.txt | wc -l)" -eq 0
test "$(cat dsppp/${{ matrix.compiler }}_results/errors_${{ matrix.core }}.txt | wc -l)" -eq 0
6 changes: 3 additions & 3 deletions dsppp/run_all.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,17 +9,17 @@
from colorama import init,Fore, Back, Style

try:
os.mkdir("ac6_results")
os.mkdir("AC6_results")
except:
pass

try:
os.mkdir("gcc_results")
os.mkdir("GCC_results")
except:
pass

try:
os.mkdir("clang_results")
os.mkdir("CLANG_results")
except:
pass

Expand Down

0 comments on commit e824bc2

Please sign in to comment.