File tree Expand file tree Collapse file tree 1 file changed +36
-0
lines changed
Expand file tree Collapse file tree 1 file changed +36
-0
lines changed Original file line number Diff line number Diff line change 1+ name : e2e tests - crio
2+
3+ on :
4+ push :
5+ branches : [ "main" ]
6+ pull_request :
7+ branches : [ "main" ]
8+
9+ jobs :
10+ build :
11+ runs-on : ubuntu-latest
12+ steps :
13+ - uses : actions/setup-python@v2
14+ with :
15+ python-version : 3.x
16+
17+ - run : |
18+ pip3 install --user --upgrade j2cli
19+ j2 --version
20+ - uses : actions/checkout@v3
21+
22+ - name : Set up Go
23+ uses : actions/setup-go@v3
24+ with :
25+ go-version : 1.18
26+
27+ - name : Setup kind cluster
28+ run : hack/e2e-crio-cluster-setup.sh
29+
30+ - name : Test - provisioning the examples
31+ run : e2e/test-provisioning-examples.sh
32+
33+ - name : Cleanup cluster
34+ run : |
35+ kind delete cluster # gracefully remove the cluster
36+ docker rm -f $(docker ps -qa) # remove the registry + any leftover
You can’t perform that action at this time.
0 commit comments