We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ed7cf1a commit 2099b18Copy full SHA for 2099b18
2 files changed
.github/workflows/build-amd64.yaml
@@ -29,7 +29,7 @@ jobs:
29
run: sleep 120
30
31
- name: Test noVNC is up
32
- run: |
+ run: |
33
SERVICE_URL="http://localhost:3080"
34
EXPECTED_RESPONSE="200"
35
RESPONSE=$(curl -s -o /dev/null -w "%{http_code}" $SERVICE_URL)
@@ -46,7 +46,7 @@ jobs:
46
fi
47
48
- name: Test code-server is up
49
50
SERVICE_URL="http://localhost:3081"
51
52
@@ -61,8 +61,9 @@ jobs:
61
echo "Actual: $RESPONSE"
62
exit 1
63
64
- - name: Test sshd is up
65
+
+ - name: Test sshd is up
66
67
EXPECTED_RESPONSE="1"
68
RESPONSE=$(netstat -an | grep 0.0.0.0:3022 | grep tcp | grep LISTEN | wc -l)
69
if [ "$RESPONSE" == "$EXPECTED_RESPONSE" ]; then
.github/workflows/build-arm64.yaml
0 commit comments