File tree 1 file changed +28
-1
lines changed
1 file changed +28
-1
lines changed Original file line number Diff line number Diff line change 23
23
docker push ${POI_REGISTRY}/${POI_IMAGE_NAME}
24
24
docker system prune -f
25
25
26
+ cayman_poi :
27
+ runs-on : self-hosted
28
+ steps :
29
+ - name : Checkout Cayman POI
30
+ uses : actions/checkout@master
31
+ with :
32
+ repository : vcf/cayman-poi
33
+ ref : vmware-master
34
+ path : ./cayman-poi
35
+ submodules : " true"
36
+ fetch-depth : 0
37
+ ssh-key : ${{ secrets.POI_CICD_SSH_KEY }}
38
+ ssh-strict : " false"
39
+
40
+ - name : create branch and push
41
+ run : |
42
+ cd ./cayman-poi
43
+ git checkout -b test/poi-submodule/${GITHUB_SHA::7}
44
+ pushd poi/src
45
+ git checkout ${GITHUB_SHA::7}
46
+ popd
47
+ git add poi/src
48
+ git config --global user.email "[email protected] "
49
+ git config --global user.name "POI CI/CD"
50
+ git commit -m "update poi/src to ${GITHUB_SHA::7} for testing branch ${{ github.ref_name }}"
51
+ git push origin test/poi-submodule/${GITHUB_SHA::7}
52
+
26
53
ova-poi-harness :
27
54
runs-on : self-hosted
28
55
needs : build-container
55
82
ref : main
56
83
path : ./poi-harness
57
84
ssh-key : ${{ secrets.POI_CICD_SSH_KEY }}
58
- ssh-strict : false
85
+ ssh-strict : " false"
59
86
60
87
- name : build OVA
61
88
env :
You can’t perform that action at this time.
0 commit comments