File tree 2 files changed +29
-3
lines changed 2 files changed +29
-3
lines changed Original file line number Diff line number Diff line change @@ -54,15 +54,35 @@ jobs:
54
54
with :
55
55
test-results : test.json
56
56
57
- e2e-test :
57
+ e2e-quick-start :
58
58
strategy :
59
59
matrix :
60
60
provider :
61
61
- Docker
62
+ # Uncomment below once we have the ability to run e2e tests on AWS from GHA.
63
+ # - AWS
62
64
fail-fast : false
63
65
uses : ./.github/workflows/e2e.yml
64
66
with :
65
67
provider : ${{ matrix.provider }}
68
+ focus : Quick start
69
+ secrets : inherit
70
+ permissions :
71
+ contents : read
72
+ checks : write
73
+
74
+ e2e-self-hosted :
75
+ strategy :
76
+ matrix :
77
+ provider :
78
+ - Docker
79
+ # Uncomment below once we have the ability to run e2e tests on AWS from GHA.
80
+ # - AWS
81
+ fail-fast : false
82
+ uses : ./.github/workflows/e2e.yml
83
+ with :
84
+ provider : ${{ matrix.provider }}
85
+ focus : Self-hosted
66
86
secrets : inherit
67
87
permissions :
68
88
contents : read
@@ -138,7 +158,7 @@ jobs:
138
158
uses : actions/cache@v4
139
159
with :
140
160
path : ~/.cache/pre-commit
141
- key : pre-commit-3|${{ env.pythonLocation }}|${{ hashFiles('.pre-commit-config.yaml') }}
161
+ key : pre-commit-3|${{ hashFiles('.pre-commit-config.yaml') }}
142
162
143
163
- name : Run pre-commit
144
164
run : devbox run -- make pre-commit
Original file line number Diff line number Diff line change 8
8
description : Infrastructure provider to run e2e tests with
9
9
type : string
10
10
required : true
11
+ skip :
12
+ description : e2e tests to skip
13
+ type : string
14
+ focus :
15
+ description : e2e tests to focus
16
+ type : string
11
17
12
18
jobs :
13
19
e2e-test :
37
43
${{ runner.os }}-go-
38
44
39
45
- name : Run e2e tests
40
- run : devbox run -- make e2e-test E2E_LABEL='provider:${{ inputs.provider }}'
46
+ run : devbox run -- make e2e-test E2E_LABEL='provider:${{ inputs.provider }}' E2E_SKIP='${{ inputs.skip }}' E2E_FOCUS='${{ inputs.focus }}'
41
47
env :
42
48
GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }}
43
49
You can’t perform that action at this time.
0 commit comments