File tree 2 files changed +15
-2
lines changed
2 files changed +15
-2
lines changed Original file line number Diff line number Diff line change 62
62
method : service-account
63
63
k8s-url : https://api.e2e.virtlab.flant.com
64
64
k8s-secret : ${{ secrets.E2E_VIRTUALIZATION_SA_SECRET }}
65
+
66
+ - name : Test cluster connection
67
+ run : |
68
+ kubectl get no
65
69
66
70
- name : e2e
67
71
run : |
74
78
cd ./tests/e2e/
75
79
76
80
echo "Show tasks"
77
- task
81
+ task || true
78
82
echo "--"
79
83
80
84
echo "Run task local"
81
- task run_local
85
+ task run_local -vvvvv
Original file line number Diff line number Diff line change @@ -21,13 +21,17 @@ tasks:
21
21
cp -a testdata/vm-migration /tmp/testdata/vm-migration
22
22
cp -a testdata/vm-disk-attachment /tmp/testdata/vm-disk-attachment
23
23
cp -a testdata/sshkeys /tmp/testdata/sshkeys
24
+
24
25
ginkgo :
25
26
cmds :
26
27
- |
28
+ echo "Run ginkgo install"
27
29
v=($(ginkgo version 2>/dev/null))
28
30
if [ "${v[2]}" != "{{ .GINKGO_VERSION }}" ]; then
29
31
go install github.com/onsi/ginkgo/v2/ginkgo@v"{{ .GINKGO_VERSION }}" ;
30
32
fi
33
+ ginkgo version
34
+
31
35
run :
32
36
desc : " Run e2e tests"
33
37
deps :
@@ -43,6 +47,11 @@ tasks:
43
47
- ginkgo
44
48
cmds :
45
49
- |
50
+ echo "Install d8"
51
+ curl -fsSL -o d8-install.sh https://raw.githubusercontent.com/deckhouse/deckhouse-cli/main/d8-install.sh
52
+ bash d8-install.sh
53
+
54
+ echo "Run run_local"
46
55
export E2E_CLUSTERTRANSPORT_KUBECONFIG={{.E2E_CLUSTERTRANSPORT_KUBECONFIG}}
47
56
ginkgo \
48
57
--skip-file vm_test.go \
You can’t perform that action at this time.
0 commit comments