-
Notifications
You must be signed in to change notification settings - Fork 5
106 lines (89 loc) · 2.98 KB
/
e2e-test.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
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-automine-stratus:
name: E2E Automine Stratus in-memory
uses: ./.github/workflows/_setup-e2e.yml
with:
justfile_recipe: 'e2e-stratus automine'
concurrency:
group: ${{ github.workflow }}-automine-inmemory-${{ github.ref || github.run_id }}
cancel-in-progress: true
e2e-automine-stratus-postgres:
name: E2E Automine Stratus Postgres
uses: ./.github/workflows/_setup-e2e.yml
with:
justfile_recipe: 'e2e-stratus-postgres automine'
concurrency:
group: ${{ github.workflow }}-automine-postgres-${{ github.ref || github.run_id }}
cancel-in-progress: true
e2e-automine-stratus-rocks:
name: E2E Automine Stratus Rocks
uses: ./.github/workflows/_setup-e2e.yml
with:
justfile_recipe: 'e2e-stratus-rocks automine'
concurrency:
group: ${{ github.workflow }}-automine-rocks-${{ github.ref || github.run_id }}
cancel-in-progress: true
e2e-external-stratus:
name: E2E External Stratus in-memory
uses: ./.github/workflows/_setup-e2e.yml
with:
justfile_recipe: 'e2e-stratus external'
concurrency:
group: ${{ github.workflow }}-external-inmemory-${{ github.ref || github.run_id }}
cancel-in-progress: true
e2e-external-stratus-postgres:
name: E2E External Stratus Postgres
uses: ./.github/workflows/_setup-e2e.yml
with:
justfile_recipe: 'e2e-stratus-postgres external'
concurrency:
group: ${{ github.workflow }}-external-postgres-${{ github.ref || github.run_id }}
cancel-in-progress: true
e2e-external-stratus-rocks:
name: E2E External Stratus Rocks
uses: ./.github/workflows/_setup-e2e.yml
with:
justfile_recipe: 'e2e-stratus-rocks external'
concurrency:
group: ${{ github.workflow }}-external-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