Skip to content

Commit a3256c7

Browse files
author
Vladimir Popov
committed
Fix issues
Signed-off-by: Vladimir Popov <[email protected]>
1 parent 1976fae commit a3256c7

File tree

2 files changed

+6
-4
lines changed

2 files changed

+6
-4
lines changed

.github/workflows/ci.yaml

+4-2
Original file line numberDiff line numberDiff line change
@@ -66,9 +66,10 @@ jobs:
6666
git diff --name-only --exit-code go.sum || ( echo "Run go tidy" && false )
6767
6868
packet:
69-
name: packet
69+
name: packet (Calico ${{ matrix.calico }})
7070
runs-on: ubuntu-latest
7171
strategy:
72+
fail-fast: false
7273
matrix:
7374
calico: ["off", "on"]
7475
steps:
@@ -119,12 +120,13 @@ jobs:
119120
report_paths: "**/cloud_test${{ steps.suffix.outputs.val }}/results/junit.xml"
120121
suite_regex: "Test*"
121122
github_token: ${{ secrets.GITHUB_TOKEN }}
123+
check_name: "JUnit Test Report (Calico ${{ matrix.calico }})"
122124
- name: Upload logs # 9. Upload logs
123125
uses: actions/upload-artifact@v2
124126
if: ${{ always() }}
125127
with:
126128
name: logs-${{ github.run_number }}
127-
path: ${{ github.repository }}/.tests/cloud_test${{ steps.suffix.outputs.val }}/
129+
path: ${{ github.repository }}/.tests/
128130

129131
packet-cleanup:
130132
name: packet cleanup

scripts/create-kubernetes-cluster.sh

+2-2
Original file line numberDiff line numberDiff line change
@@ -21,13 +21,13 @@ source scripts/include/wait-pids.sh
2121
# wait_start ip_1 ... ip_n
2222
source scripts/include/wait-start.sh
2323

24-
wait_start ${master_ip} ${worker_ip}
25-
2624
# 0. Setup SendEnv on the local side.
2725
cp /etc/ssh/ssh_config ${SSH_CONFIG} || exit 1
2826
echo "Host *
2927
SendEnv ${ENVS}" >> ${SSH_CONFIG} || exit 2
3028

29+
wait_start ${master_ip} ${worker_ip} || exit 3
30+
3131
# 1. Setup AcceptEnv on the servers sides and wait for sshd to restart.
3232
scp ${SSH_OPTS} scripts/setup-sshd.sh root@${master_ip}:setup-sshd.sh || exit 11
3333
scp ${SSH_OPTS} scripts/setup-sshd.sh root@${worker_ip}:setup-sshd.sh || exit 12

0 commit comments

Comments
 (0)