Skip to content

Commit

Permalink
Re-enable test failures, prevent GitHub Actions cache issues (#214)
Browse files Browse the repository at this point in the history
* Disable suppression of test failures

* Prevent GitHub Actions cache collision issues
  • Loading branch information
chris-j-h authored May 2, 2024
1 parent 4a17a98 commit 2cc868e
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/run-extra.yml
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ jobs:
uses: actions/cache@v2
with:
path: ${{ steps.prepare.outputs.output_dir }}
key: ${{ github.sha }}
key: ${{ github.sha }}-extra
- name: 'Check out project files'
if: steps.cache-image.outputs.cache-hit != 'true'
uses: actions/checkout@v2
Expand Down Expand Up @@ -201,7 +201,7 @@ jobs:
uses: actions/cache@v2
with:
path: ${{ needs.docker-build.outputs.output_dir }}
key: ${{ github.sha }}
key: ${{ github.sha }}-extra
- name: 'Prepare environment'
id: setup
run: |
Expand Down Expand Up @@ -265,11 +265,11 @@ jobs:
-v ${{ steps.setup.outputs.outputDir }}:${{ steps.setup.outputs.outputDir }} \
--env-file ${{ steps.setup.outputs.dockerEnvFile }} \
${{ needs.docker-build.outputs.image_name }} test \
-PgaugeFailSafe \
-Pauto \
-Dtags="${{ matrix.tag }}" ${{ steps.setup.outputs.mvnArg }} \
-Dauto.outputDir=${{ steps.setup.outputs.outputDir }} \
-Dauto.jobid=${{ steps.setup.outputs.tag }}
# -PgaugeFailSafe \
- name: 'Failure info'
if: ${{ failure() }}
run: |
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/run.yml
Original file line number Diff line number Diff line change
Expand Up @@ -211,11 +211,11 @@ jobs:
-v ${{ steps.setup.outputs.outputDir }}:${{ steps.setup.outputs.outputDir }} \
--env-file ${{ steps.setup.outputs.dockerEnvFile }} \
${{ needs.docker-build.outputs.image_name }} test \
-PgaugeFailSafe \
-Pauto \
-Dtags="${{ matrix.tag }}" ${{ steps.setup.outputs.mvnArg }} \
-Dauto.outputDir=${{ steps.setup.outputs.outputDir }} \
-Dauto.jobid=${{ steps.setup.outputs.tag }}
# -PgaugeFailSafe \
- name: 'Failure info'
if: ${{ failure() }}
run: |
Expand Down

0 comments on commit 2cc868e

Please sign in to comment.