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 6ed8a96 commit 0ae1c7cCopy full SHA for 0ae1c7c
.github/workflows/test-run.yml
@@ -85,8 +85,9 @@ 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 timeout 300 make ARCH=${{ matrix.arch }} run TEST=1 > output.log) || echo "qemu exited!"
+ run: cd os && (PATH=$PATH:~/.cargo/bin timeout 300 make ARCH=${{ matrix.arch }} run TEST=1 2>&1 | tee output.log) || echo "qemu exited!"
89
timeout-minutes: 6
90
- name: check Testing output log
91
+ working-directory: ${{ env.WORKING_DIRECTORY }}
92
run: grep "Usertests passed!" os/output.log
93
0 commit comments