Skip to content

Commit

Permalink
Improvements for actions workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
niallthomson committed Jul 8, 2024
1 parent b60b848 commit 5ce2c76
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
3 changes: 2 additions & 1 deletion .github/workflows/module-test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -74,6 +74,7 @@ jobs:
DOCKER_BUILDKIT: 1
DEV_MODE: 1
GENERATE_TIMINGS: 1
TEST_REPORT: /tmp/test-output.json
MODULE: ${{ inputs.module }}
GLOB: ${{ inputs.glob }}
AWS_REGION: "${{ secrets.AWS_REGION }}"
Expand All @@ -85,7 +86,7 @@ jobs:
id: upload-durations
with:
name: test-durations-${{ env.CLUSTER_ID }}
path: website/test-durations.json
path: /tmp/test-output.json
- name: Refresh AWS credentials
if: always()
uses: aws-actions/[email protected]
Expand Down
1 change: 1 addition & 0 deletions hack/run-tests.sh
Original file line number Diff line number Diff line change
Expand Up @@ -58,6 +58,7 @@ GENERATE_TIMINGS=${GENERATE_TIMINGS:-""}

if [ ! -z "$GENERATE_TIMINGS" ] && [ -z "$TEST_REPORT" ]; then
export TEST_REPORT=$(mktemp)
echo "Writing test output to temporary file $TEST_REPORT"
fi

if [ ! -z "$TEST_REPORT" ]; then
Expand Down

0 comments on commit 5ce2c76

Please sign in to comment.