We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e4fcfb0 commit 9a3e74aCopy full SHA for 9a3e74a
.github/workflows/test-run.yml
@@ -85,6 +85,8 @@ jobs:
85
run: sh ${{ env.WORKING_DIRECTORY }}/tools/external_test.sh ${{ env.WORKING_DIRECTORY }} ${{ inputs.CallerPackage }} ${{ inputs.CallerRepository }} ${{ inputs.CallerCommit }}
86
- name: Test ${{ matrix.arch }}
87
working-directory: ${{ env.WORKING_DIRECTORY }}
88
- run: cd os && PATH=$PATH:~/.cargo/bin make ARCH=${{ matrix.arch }} run TEST=1
89
- timeout-minutes: 10
+ run: cd os && (PATH=$PATH:~/.cargo/bin timeout 300 make ARCH=${{ matrix.arch }} run TEST=1 > output.log) || echo "qemu exited!"
+ timeout-minutes: 6
90
+ - name: check Testing output log
91
+ run: grep "Usertests passed!" os/output.log
92
0 commit comments