Skip to content

Commit

Permalink
Fix main job
Browse files Browse the repository at this point in the history
  • Loading branch information
sualeh committed Dec 8, 2024
1 parent 6b1cd52 commit fad2b1e
Showing 1 changed file with 14 additions and 2 deletions.
16 changes: 14 additions & 2 deletions .github/workflows/database-integration-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -130,13 +130,25 @@ jobs:
--projects schemacrawler-dbtest,schemacrawler-$dbproject \
--also-make \
clean package
- id: gather-expected-results
name: Gather expected results for failed tests
shell: bash
run: |
# Gather expected results
echo "Gather expected results"
# DEBUG
echo "Current working directory:"
pwd
echo "Show expected results directories:"
find . -type d -name "unit_tests_results_output" -exec echo {} \;
# Save expected results files
.github/scripts/unit-tests-results-output.sh $(realpath .)
echo "Zip expected results:"
.github/scripts/unit-tests-results-output.sh $(realpath .)
- id: upload-unit-tests-results-output
name: Upload expected results files
uses: actions/upload-artifact@v4
if: always()
with:
name: unit-tests-results-output
path: ./unit-tests-results-output.zip
path: ./unit_tests_results_output.zip
retention-days: 5

0 comments on commit fad2b1e

Please sign in to comment.