Skip to content

Commit

Permalink
Update run-tests.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
charlestian23 committed Oct 10, 2023
1 parent 48479a6 commit 28c06bc
Showing 1 changed file with 12 additions and 46 deletions.
58 changes: 12 additions & 46 deletions .github/workflows/run-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,35 +29,12 @@ jobs:
- name: Build with Gradle
run: ./gradlew build -x test

- name: Debug Info
run: |
echo "Java version:"
java -version
echo "Gradle version:"
./gradlew --version
shell: bash

- name: Run JUnit Tests on Linux
run: |
./gradlew test
test_result=$?
if [ $test_result -ne 0 ]; then
./gradlew test --tests '*' | grep -E 'Test:|PASSED|FAILED'
test_result=${PIPESTATUS[0]}
if [[ $test_result -ne 0 ]]; then
echo "Tests failed with exit code $test_result"
exit $test_result
fi
shell: bash

- name: Run JUnit Tests
run: |
test_output=$(./gradlew test --quiet | grep -E "tests? passed|tests? failed")
echo "$test_output"
tests_run=$(echo "$test_output" | grep -Eo "[0-9]+" | head -n 1)
tests_passed=$(echo "$test_output" | grep -Eo "[0-9]+" | tail -n 1)
tests_failed=$((tests_run - tests_passed))
echo "Tests Run: $tests_run"
echo "Tests Passed: $tests_passed"
echo "Tests Failed: $tests_failed"
if [[ $tests_failed -gt 0 ]]; then
exit 1
fi
Expand All @@ -81,15 +58,10 @@ jobs:

- name: Run JUnit Tests on macOS
run: |
test_output=$(./gradlew test --quiet | grep -E "tests? passed|tests? failed")
echo "$test_output"
tests_run=$(echo "$test_output" | grep -Eo "[0-9]+" | head -n 1)
tests_passed=$(echo "$test_output" | grep -Eo "[0-9]+" | tail -n 1)
tests_failed=$((tests_run - tests_passed))
echo "Tests Run: $tests_run"
echo "Tests Passed: $tests_passed"
echo "Tests Failed: $tests_failed"
if [[ $tests_failed -gt 0 ]]; then
./gradlew test --tests '*' | grep -E 'Test:|PASSED|FAILED'
test_result=${PIPESTATUS[0]}
if [[ $test_result -ne 0 ]]; then
echo "Tests failed with exit code $test_result"
exit 1
fi
Expand All @@ -108,15 +80,9 @@ jobs:

- name: Run JUnit Tests on Windows
run: |
test_output=$(./gradlew.bat test --quiet | grep -E "tests? passed|tests? failed")
echo "$test_output"
tests_run=$(echo "$test_output" | grep -Eo "[0-9]+" | head -n 1)
tests_passed=$(echo "$test_output" | grep -Eo "[0-9]+" | tail -n 1)
tests_failed=$((tests_run - tests_passed))
echo "Tests Run: $tests_run"
echo "Tests Passed: $tests_passed"
echo "Tests Failed: $tests_failed"
if %tests_failed% gtr 0 (
./gradlew.bat test --tests '*' | findstr /C:"Test:" /C:"PASSED" /C:"FAILED"
test_result=${PIPESTATUS[0]}
if [[ $test_result -ne 0 ]]; then
echo "Tests failed with exit code $test_result"
exit 1
)
fi

0 comments on commit 28c06bc

Please sign in to comment.