-
Notifications
You must be signed in to change notification settings - Fork 55
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
IWF-232: Add disabling sticky cache option (#473)
- Loading branch information
1 parent
bcb1d8c
commit 7fe9eb9
Showing
7 changed files
with
106 additions
and
3 deletions.
There are no files selected for viewing
26 changes: 26 additions & 0 deletions
26
.github/workflows/ci-cadence-integ-test-disable-sticky.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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
name: Cadence Integration Test | ||
on: | ||
pull_request: | ||
push: | ||
branches: | ||
- 'main' | ||
|
||
jobs: | ||
tests: | ||
name: "Integration testing with sticky cache disabled" | ||
runs-on: ubuntu-latest | ||
strategy: | ||
fail-fast: false | ||
matrix: | ||
test-subset: | ||
- "a-m" | ||
- "n-z" | ||
steps: | ||
- uses: actions/checkout@v3 | ||
- name: "Set up cadence environment" | ||
run: docker compose -f docker-compose/ci-cadence-dependencies.yml up -d | ||
- name: "Test against cadence" | ||
run: make ci-cadence-integ-test-disable-sticky startsWith=${{ matrix['test-subset'] }} | ||
- name: Dump docker logs | ||
if: always() | ||
uses: jwalton/gh-docker-logs@v2 |
31 changes: 31 additions & 0 deletions
31
.github/workflows/ci-temporal-integ-test-disable-sticky.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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
name: Temporal Integration Test | ||
on: | ||
pull_request: | ||
push: | ||
branches: | ||
- 'main' | ||
|
||
jobs: | ||
tests: | ||
name: "Integration testing with sticky cache disabled" | ||
runs-on: ubuntu-latest | ||
permissions: | ||
# Give the default GITHUB_TOKEN write permission to commit and push the | ||
# added or changed files to the repository. | ||
contents: write | ||
strategy: | ||
fail-fast: false | ||
matrix: | ||
test-subset: | ||
- "a-m" | ||
- "n-z" | ||
|
||
steps: | ||
- uses: actions/checkout@v3 | ||
- name: "Set up temporal environment" | ||
run: docker compose -f docker-compose/ci-temporal-dependencies.yml up -d | ||
- name: "Test against temporal" | ||
run: make ci-temporal-integ-test-disable-sticky startsWith=${{ matrix['test-subset'] }} | ||
- name: Dump docker logs | ||
if: always() | ||
uses: jwalton/gh-docker-logs@v2 |
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
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
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