allow block mode customization on e2e tests #2099
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: E2E Tests | |
on: | |
pull_request: | |
branches: | |
- '*' | |
paths-ignore: | |
- '.github/workflows/deploy.yml' | |
- '.github/workflows/docs-release.yml' | |
- '.github/workflows/outdated.yml' | |
- '.github/workflows/comment-tag-report.yml' | |
- '.github/workflows/pr-agent.yml' | |
- '.github/CODEOWNERS' | |
- 'config/**' | |
- 'README.md' | |
- 'LICENSE' | |
- 'CONTRIBUTING.md' | |
- 'utils/slack-notifiers/**' | |
workflow_dispatch: | |
push: # Rebuild cache policy | |
branches: | |
- 'main' | |
paths: | |
- 'Cargo.lock' | |
- 'Cargo.toml' | |
jobs: | |
e2e-stratus: | |
name: E2E Stratus in-memory | |
uses: ./.github/workflows/_setup-e2e.yml | |
with: | |
justfile_recipe: 'e2e-stratus' | |
concurrency: | |
group: ${{ github.workflow }}-inmemory-${{ github.ref || github.run_id }} | |
cancel-in-progress: true | |
e2e-stratus-postgres: | |
name: E2E Stratus Postgres | |
uses: ./.github/workflows/_setup-e2e.yml | |
with: | |
justfile_recipe: 'e2e-stratus-postgres' | |
concurrency: | |
group: ${{ github.workflow }}-postgres-${{ github.ref || github.run_id }} | |
cancel-in-progress: true | |
e2e-stratus-rocks: | |
name: E2E Stratus Rocks | |
uses: ./.github/workflows/_setup-e2e.yml | |
with: | |
justfile_recipe: 'e2e-stratus-rocks' | |
concurrency: | |
group: ${{ github.workflow }}-rocks-${{ github.ref || github.run_id }} | |
cancel-in-progress: true | |
e2e-clock-stratus: | |
name: E2E Clock Stratus in-memory | |
uses: ./.github/workflows/_setup-e2e.yml | |
with: | |
justfile_recipe: 'e2e-clock-stratus' | |
concurrency: | |
group: ${{ github.workflow }}-clock-inmemory-${{ github.ref || github.run_id }} | |
cancel-in-progress: true | |
e2e-clock-stratus-rocks: | |
name: E2E Clock Stratus Rocks | |
uses: ./.github/workflows/_setup-e2e.yml | |
with: | |
justfile_recipe: 'e2e-clock-stratus-rocks' | |
concurrency: | |
group: ${{ github.workflow }}-clock-rocks-${{ github.ref || github.run_id }} | |
cancel-in-progress: true |