Skip to content

Commit

Permalink
GitHub action corrected to use mkdir -p
Browse files Browse the repository at this point in the history
  • Loading branch information
martinbond7 committed Dec 21, 2023
1 parent 6b57d13 commit 753ea83
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/build-host.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -19,26 +19,26 @@ jobs:
run: |
cd solutions/exercise-1
ceedling test:all
mkdir build/test-reports
mkdir -p build/test-reports
cp build/artifacts/test/*.xml build/test-reports/
- name : build and test Exercise 2
run: |
cd solutions/exercise-2
ceedling test:all
mkdir build/test-reports
mkdir -p build/test-reports
cp build/artifacts/test/*.xml build/test-reports/
- name : build and test Exercise 4
run: |
cd solutions/exercise-4
ceedling test:all
mkdir build/test-reports
mkdir -p build/test-reports
cp build/artifacts/test/*.xml build/test-reports/
- name: Coverage for Exercise 4
run: |
cd solutions/exercise-4
ceedling gcov:all
ceedling utils:gcov
mkdir build/test-reports
mkdir -p build/test-reports
cp build/artifacts/gcov/*.xml build/test-reports/
check:
runs-on: ubuntu-latest
Expand Down

0 comments on commit 753ea83

Please sign in to comment.