Skip to content

Commit

Permalink
PC undo
Browse files Browse the repository at this point in the history
  • Loading branch information
heinsaar committed Oct 17, 2023
1 parent 49dc847 commit 743fc43
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 47 deletions.
20 changes: 18 additions & 2 deletions .github/workflows/cmake-multi-platform.yml
Original file line number Diff line number Diff line change
Expand Up @@ -113,10 +113,26 @@ jobs:
if: success() && runner.os != 'Windows'
working-directory: ${{ steps.strings.outputs.build-output-dir }}
shell: bash
run: ./kaizen -verbose
run: |
OUTPUT=$(./kaizen -verbose)
echo "$OUTPUT"
if [[ "$OUTPUT" == *"ALL TESTS PASS"* ]]; then
echo "ALL TESTS PASS"
else
echo "NOT ALL TESTS PASS"
exit 1
fi
- name: Test by running kaizen executable (Windows)
if: success() && runner.os == 'Windows'
working-directory: ${{ steps.strings.outputs.build-output-dir }}
shell: bash
run: .\\Release\\kaizen.exe -verbose
run: |
OUTPUT=$(.\\Release\\kaizen.exe -verbose)
echo "$OUTPUT"
if [[ "$OUTPUT" == *"ALL TESTS PASS"* ]]; then
echo "All tests passed."
else
echo "NOT ALL TESTS PASS"
exit 1
fi
45 changes: 0 additions & 45 deletions .github/workflows/main-tests.yml

This file was deleted.

0 comments on commit 743fc43

Please sign in to comment.