-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
- Loading branch information
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
name: "Forge Continuous" | ||
on: | ||
workflow_dispatch: | ||
schedule: | ||
- cron: "0 * * * *" | ||
pull_request: | ||
paths: | ||
- 'testsuite/**.py' | ||
|
||
# cancel redundant builds | ||
concurrency: | ||
# cancel redundant builds on PRs (only on PR, not on branches) | ||
group: ${{ github.workflow }}-${{ (github.event_name == 'pull_request' && github.ref) || github.sha }} | ||
cancel-in-progress: true | ||
|
||
permissions: | ||
contents: read | ||
id-token: write #required for GCP Workload Identity federation which we use to login into Google Artifact Registry | ||
issues: write | ||
pull-requests: write | ||
|
||
jobs: | ||
forge-continuous: | ||
uses: ./.github/workflows/run-forge.yaml | ||
secrets: inherit | ||
with: | ||
COMMENT_HEADER: forge-continuous | ||
# Use the cache ID as the Forge namespace so we can limit Forge test concurrency on k8s, since Forge | ||
# test lifecycle is separate from that of GHA. This protects us from the case where many Forge tests are triggered | ||
# by this GHA. If there is a Forge namespace collision, Forge will pre-empt the existing test running in the namespace. | ||
FORGE_NAMESPACE: forge-continuous | ||
FORGE_TEST_SUITE: continuous |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.