summaryrefslogtreecommitdiff
path: root/.github
diff options
context:
space:
mode:
authorAnthony Green <green@moxielogic.com>2022-09-05 08:11:45 -0400
committerAnthony Green <green@moxielogic.com>2022-09-05 08:11:45 -0400
commit4b79267be359b42e7a4cbf95068abe805aae0061 (patch)
tree545f873745ab71e582e708d6c209ab88f4adf34d /.github
parent3020ad832144e35d2a42fb8782ddbd3ed69fdbaf (diff)
downloadlibffi-4b79267be359b42e7a4cbf95068abe805aae0061.tar.gz
outputs vs output
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/build.yml18
1 files changed, 9 insertions, 9 deletions
diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml
index 641a1d8..17e36a7 100644
--- a/.github/workflows/build.yml
+++ b/.github/workflows/build.yml
@@ -132,42 +132,42 @@ jobs:
ssh -o StrictHostKeyChecking=no -o ConnectTimeout=10 -o ConnectionAttempts=3 -i /tmp/cfk -p ${{ matrix.CFARM_PORT }} ${{ secrets.CFARM_USERNAME }}@${{ matrix.CFARM_HOST }} "mkdir -p t/$GITHUB_RUN_NUMBER"
if test $? -ne 0; then
echo "Remote host is unavailable."
- echo ::set-output name=HOST_OK::"NO"
+ echo '::set-output name=HOST_OK::NO'
else
echo "Remote host is available."
- echo ::set-output name=HOST_OK::"YES"
+ echo '::set-output name=HOST_OK::YES'
fi
set -e
- name: Show host availability
run: |
- echo ${{ steps.check-host.output.HOST_OK }}
+ echo ${{ steps.check-host.outputs.HOST_OK }}
- name: Copy source to remote host
- if: ${{ steps.check-host.output.HOST_OK == 'YES' }}
+ if: ${{ steps.check-host.outputs.HOST_OK == 'YES' }}
run: |
- echo ${{ steps.check-host.output.HOST_OK }}
+ echo ${{ steps.check-host.outputs.HOST_OK }}
scp -o StrictHostKeyChecking=no -o ConnectTimeout=10 -o ConnectionAttempts=3 -i /tmp/cfk -P ${{ matrix.CFARM_PORT }} -r * ${{ secrets.CFARM_USERNAME }}@${{ matrix.CFARM_HOST }}:t/$GITHUB_RUN_NUMBER
- name: Run configure and make
- if: ${{ steps.check-host.output.HOST_OK == 'YES' }}
+ if: ${{ steps.check-host.outputs.HOST_OK == 'YES' }}
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; ./configure --host=${{ matrix.CFARM_TRIPLE }}) || true; exit 0"
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;) || true; exit 0"
- name: Run tests
- if: ${{ steps.check-host.output.HOST_OK == 'YES' }}
+ if: ${{ steps.check-host.outputs.HOST_OK == 'YES' }}
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 5; done;)"
- name: Copy results and clean up
- if: ${{ steps.check-host.output.HOST_OK == 'YES' }}
+ if: ${{ steps.check-host.outputs.HOST_OK == 'YES' }}
run: |
scp -o StrictHostKeyChecking=no -o ConnectTimeout=10 -o ConnectionAttempts=3 -i /tmp/cfk -P ${{ matrix.CFARM_PORT }} ${{ secrets.CFARM_USERNAME }}@${{ matrix.CFARM_HOST }}:t/$GITHUB_RUN_NUMBER/*/testsuite/*.log .
ssh -o StrictHostKeyChecking=no -o ConnectTimeout=10 -o ConnectionAttempts=3 -i /tmp/cfk -p ${{ matrix.CFARM_PORT }} ${{ secrets.CFARM_USERNAME }}@${{ matrix.CFARM_HOST }} "rm -rf t/$GITHUB_RUN_NUMBER"
- name: Install rlgl and run
- if: ${{ steps.check-host.output.HOST_OK == 'YES' }}
+ if: ${{ steps.check-host.outputs.HOST_OK == 'YES' }}
run: |
wget -qO - https://rl.gl/cli/rlgl-linux-amd64.tgz | \
tar --strip-components=2 -xvzf - ./rlgl/rlgl;