Commit f4009ed4f0351c6c8e8f410dac7c558fe9996e7e

Anthony Green 2022-09-05T06:40:00

Fix syntax error

1
2
3
4
5
6
7
8
9
10
11
12
13
diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml
index 60fad0b..39f5c05 100644
--- a/.github/workflows/build.yml
+++ b/.github/workflows/build.yml
@@ -146,7 +146,7 @@ jobs:
 
       - name: Run tests
         run: |
-          ssh -o StrictHostKeyChecking=no -o ConnectTimeout=10 -o ConnectionAttempts=3 -i /tmp/cfk -p ${{ matrix.CFARM_PORT }} ${{ secrets.CFARM_USERNAME }}@${{ matrix.CFARM_HOST }} "(cd t/$GITHUB_RUN_NUMBER; if test -f ~/.profile; then source ~/.profile; fi; make check &; CHECKPID=\$!; while kill -0 \$CHECKPID 2>/dev/null; do echo "Waiting for tests to finish"; sleep 15; done;"
+          ssh -o StrictHostKeyChecking=no -o ConnectTimeout=10 -o ConnectionAttempts=3 -i /tmp/cfk -p ${{ matrix.CFARM_PORT }} ${{ secrets.CFARM_USERNAME }}@${{ matrix.CFARM_HOST }} "(cd t/$GITHUB_RUN_NUMBER; if test -f ~/.profile; then source ~/.profile; fi; make check & CHECKPID=\$!; while kill -0 \$CHECKPID 2>/dev/null; do echo "Waiting for tests to finish"; sleep 5; done;"
 
       - name: Copy results and clean up
         run: |