Skip to content

Commit

Permalink
Force change
Browse files Browse the repository at this point in the history
  • Loading branch information
sjonpaulbrown committed Jun 24, 2024
1 parent f7ac2a4 commit 665c1e7
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -17,16 +17,19 @@ runs:
id: commit_date
run: echo "::set-output name=date::$(git show --no-patch --no-notes --pretty='%cI' $COMMIT_SHA)"
shell: bash

- name: Get job run date
id: job_run_date
run: echo "::set-output name=date::$(TZ=":UTC" date -Iseconds)"
shell: bash

- name: Process test results
run: cat test-output | go run tools/test_monitor/level1/process_summary1_results.go
env:
JOB_STARTED: ${{ steps.job_run_date.outputs.date }}
COMMIT_DATE: ${{ steps.commit_date.outputs.date }}
shell: bash

- name: Google auth
id: auth
uses: google-github-actions/auth@v2
Expand All @@ -35,6 +38,9 @@ runs:
token_format: 'access_token'
workload_identity_provider: ${{ inputs.workload_identity_provider }}

- name: 'Set up Cloud SDK'
uses: 'google-github-actions/setup-gcloud@v2'

- name: Upload results to BigQuery (skipped tests)
uses: nick-fields/retry@v2
with:
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/flaky-test-monitor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -184,3 +184,4 @@ jobs:
with:
service_account: ${{ secrets.FLAKY_TEST_SERVICE_ACCOUNT }}
workload_identity_provider: ${{ secrets.FLAKY_TEST_WORKLOAD_IDENTITY_PROVIDER }}

0 comments on commit 665c1e7

Please sign in to comment.