-
Notifications
You must be signed in to change notification settings - Fork 238
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #4815 from systeminit/brit/bug-635-run-e2e-tests-i…
…n-tool-prod-every-15min Add second cron for running e2e tests against tools production, fix deployment so we cancel running e2e tests if a deploy is kicked off
- Loading branch information
Showing
3 changed files
with
37 additions
and
12 deletions.
There are no files selected for viewing
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
5 changes: 3 additions & 2 deletions
5
.github/workflows/crons.yml → .github/workflows/prod-crons.yml
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
name: Tools Crons | ||
|
||
on: | ||
schedule: | ||
- cron: "*/15 * * * *" # Runs every 15 minutes | ||
|
||
# We will wait until these tests finish before starting a deploy | ||
# We will also wait for a deploy to finish before starting to run tests | ||
concurrency: | ||
group: deploy-tools | ||
cancel-in-progress: false | ||
|
||
jobs: | ||
e2e-validation: | ||
uses: ./.github/workflows/e2e-validation.yml | ||
with: | ||
environment: tools | ||
secrets: inherit | ||
api-test: | ||
uses: ./.github/workflows/run-api-test.yml | ||
with: | ||
environment: tools | ||
secrets: inherit |