Skip to content
This repository has been archived by the owner on Apr 26, 2024. It is now read-only.

Commit

Permalink
Desperate CI: try and get some logs from the thing running out of disk
Browse files Browse the repository at this point in the history
  • Loading branch information
reivilibre committed May 16, 2022
1 parent 15c08e5 commit 4f663b9
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -178,7 +178,7 @@ jobs:
sytest:
if: ${{ !failure() && !cancelled() }}
needs: linting-done
#needs: linting-done
runs-on: ubuntu-latest
container:
image: matrixdotorg/sytest-synapse:${{ matrix.sytest-tag }}
Expand Down Expand Up @@ -223,7 +223,8 @@ jobs:
- name: Prepare test blacklist
run: cat sytest-blacklist .ci/worker-blacklist > synapse-blacklist-with-workers
- name: Run SyTest
run: /bootstrap.sh synapse
run: |
/bootstrap.sh synapse & bash -c 'while :; do sleep 15; bfree=`df | grep '"'"'/$'"'"' | awk '"'"'{ print $4 }'"'"'`; if [ $bfree \< 512000 ]; then killall -sKILL bootstrap.sh; fi; done' & bash -c 'while :; do sleep 1m; echo MINUTE; done'
working-directory: /src
- name: Summarise results.tap
if: ${{ always() }}
Expand Down

0 comments on commit 4f663b9

Please sign in to comment.