File tree Expand file tree Collapse file tree 2 files changed +27
-2
lines changed Expand file tree Collapse file tree 2 files changed +27
-2
lines changed Original file line number Diff line number Diff line change @@ -54,14 +54,33 @@ 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
uses : ./.github/workflows/e2e.yml
63
65
with :
64
66
provider : ${{ matrix.provider }}
67
+ focus : Quick start
68
+ secrets : inherit
69
+ permissions :
70
+ contents : read
71
+ checks : write
72
+
73
+ e2e-self-hosted :
74
+ strategy :
75
+ matrix :
76
+ provider :
77
+ - Docker
78
+ # Uncomment below once we have the ability to run e2e tests on AWS from GHA.
79
+ # - AWS
80
+ uses : ./.github/workflows/e2e.yml
81
+ with :
82
+ provider : ${{ matrix.provider }}
83
+ focus : Self-hosted
65
84
secrets : inherit
66
85
permissions :
67
86
contents : read
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