File tree Expand file tree Collapse file tree 2 files changed +14
-31
lines changed Expand file tree Collapse file tree 2 files changed +14
-31
lines changed Original file line number Diff line number Diff line change 99 - main
1010
1111jobs :
12+ extension-developer-e2e :
13+ runs-on : ubuntu-latest
14+ steps :
15+ - uses : actions/checkout@v4
16+
17+ - uses : actions/setup-go@v5
18+ with :
19+ go-version-file : go.mod
20+
21+ - name : Run the extension developer e2e test
22+ run : |
23+ make extension-developer-e2e
24+
1225 e2e-kind :
1326 runs-on : ubuntu-latest
1427 steps :
2134 go-version-file : go.mod
2235
2336 - name : Run e2e tests
24- run : |
25- # By default make stops building on first non-zero exit code which
26- # in case of E2E tests will mean that code coverage will only be
27- # collected on successful runs. We want to collect coverage even
28- # after failing tests.
29- # With -k flag make will continue the build, but will return non-zero
30- # exit code in case of any errors.
31- ARTIFACT_PATH=/tmp/artifacts make test-e2e
37+ run : ARTIFACT_PATH=/tmp/artifacts make test-e2e
3238
33393440 if : failure()
Load Diff This file was deleted.
You can’t perform that action at this time.
0 commit comments