This repository was archived by the owner on Aug 12, 2025. It is now read-only.
File tree Expand file tree Collapse file tree 1 file changed +21
-1
lines changed Expand file tree Collapse file tree 1 file changed +21
-1
lines changed Original file line number Diff line number Diff line change 11
11
${{ github.event.workflow_run.event == 'pull_request' &&
12
12
github.event.workflow_run.conclusion == 'success' }}
13
13
steps :
14
+ - name : Set up Docker Buildx
15
+ uses : docker/setup-buildx-action@v1
16
+ - uses : actions/setup-go@v2
17
+ with :
18
+ go-version : ' 1.16' # The Go version to download (if necessary) and use.
19
+ - name : Setup kind
20
+
21
+ with :
22
+ version : v0.11.1
23
+ skipClusterCreation : true
14
24
- name : ' Download artifact'
15
25
16
26
with :
34
44
- run : unzip e2e-artifacts.zip
35
45
- name : Display structure of downloaded files
36
46
run : ls -R
37
- working-directory : /tmp/e2e-artifacts
47
+ - name : Load image
48
+ run : |
49
+ docker load --input capp-e2e-image.tar
50
+ docker image ls -a
51
+ - name : e2e smoketest
52
+ env :
53
+ PACKET_API_KEY : ${{ secrets.PACKET_API_TOKEN }}
54
+ PROJECT_ID : ${{ secrets.PROJECT_ID }}
55
+ # This currently runs the tests serially, if we need to parallize
56
+ # need to install ginkgo and use it to run the tests
57
+ run : ./e2e.test -e2e.artifacts-folder=artifacts -e2e.config=config/e2e-config.yaml -ginkgo.focus='\[Smoke Test\]' -ginkgo.progress -ginkgo.trace -ginkgo.v
You can’t perform that action at this time.
0 commit comments