CRDB-28040 : JWKS fetch from jwks_uri #6812
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: EXPERIMENTAL GitHub actions testing | |
on: | |
pull_request: | |
types: [ opened, reopened, synchronize, edited ] | |
branches: [ master ] | |
concurrency: | |
group: ${{ github.event.pull_request.number }} | |
cancel-in-progress: true | |
jobs: | |
test_job: | |
runs-on: [self-hosted, basic_runner_group] | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
# By default, checkout merges the PR into the current master. | |
# Instead, we want to check out the PR as is. | |
ref: ${{ github.event.pull_request.head.sha }} | |
- run: ./build/github/get-engflow-keys.sh | |
- name: run tests | |
run: bazel test //pkg:all_tests //pkg/ui:lint //pkg/ui:test --config crosslinux --jobs 300 --remote_download_minimal --bes_keywords=github_pr_number=${{ github.event.pull_request.number }} --config=use_ci_timeouts --build_event_binary_file=bes.bin $(./build/github/engflow-args.sh) | |
- name: upload test results | |
run: ./build/github/upload-test-results.sh bes.bin | |
if: always() | |
- name: clean up | |
run: ./build/github/cleanup-engflow-keys.sh | |
if: always() |