File tree 2 files changed +6
-4
lines changed
2 files changed +6
-4
lines changed Original file line number Diff line number Diff line change 66
66
git diff --name-only --exit-code go.sum || ( echo "Run go tidy" && false )
67
67
68
68
packet :
69
- name : packet
69
+ name : packet (Calico ${{ matrix.calico }})
70
70
runs-on : ubuntu-latest
71
71
strategy :
72
+ fail-fast : false
72
73
matrix :
73
74
calico : ["off", "on"]
74
75
steps :
@@ -119,12 +120,13 @@ jobs:
119
120
report_paths : " **/cloud_test${{ steps.suffix.outputs.val }}/results/junit.xml"
120
121
suite_regex : " Test*"
121
122
github_token : ${{ secrets.GITHUB_TOKEN }}
123
+ check_name : " JUnit Test Report (Calico ${{ matrix.calico }})"
122
124
- name : Upload logs # 9. Upload logs
123
125
uses : actions/upload-artifact@v2
124
126
if : ${{ always() }}
125
127
with :
126
128
name : logs-${{ github.run_number }}
127
- path : ${{ github.repository }}/.tests/cloud_test${{ steps.suffix.outputs.val }}/
129
+ path : ${{ github.repository }}/.tests/
128
130
129
131
packet-cleanup :
130
132
name : packet cleanup
Original file line number Diff line number Diff line change @@ -21,13 +21,13 @@ source scripts/include/wait-pids.sh
21
21
# wait_start ip_1 ... ip_n
22
22
source scripts/include/wait-start.sh
23
23
24
- wait_start ${master_ip} ${worker_ip}
25
-
26
24
# 0. Setup SendEnv on the local side.
27
25
cp /etc/ssh/ssh_config ${SSH_CONFIG} || exit 1
28
26
echo " Host *
29
27
SendEnv ${ENVS} " >> ${SSH_CONFIG} || exit 2
30
28
29
+ wait_start ${master_ip} ${worker_ip} || exit 3
30
+
31
31
# 1. Setup AcceptEnv on the servers sides and wait for sshd to restart.
32
32
scp ${SSH_OPTS} scripts/setup-sshd.sh root@${master_ip} :setup-sshd.sh || exit 11
33
33
scp ${SSH_OPTS} scripts/setup-sshd.sh root@${worker_ip} :setup-sshd.sh || exit 12
You can’t perform that action at this time.
0 commit comments