Make sure Rust tests actually ran in deploy-gcp-tests.yml (#4710)
Co-authored-by: mergify[bot] <37929162+mergify[bot]@users.noreply.github.com>
This commit is contained in:
parent
b893f97913
commit
dd273fec70
|
|
@ -797,7 +797,7 @@ jobs:
|
||||||
"
|
"
|
||||||
|
|
||||||
|
|
||||||
# wait for the result of the test
|
# check the results of the test
|
||||||
test-result:
|
test-result:
|
||||||
# TODO: update the job name here, and in the branch protection rules
|
# TODO: update the job name here, and in the branch protection rules
|
||||||
name: Run ${{ inputs.test_id }} test
|
name: Run ${{ inputs.test_id }} test
|
||||||
|
|
@ -834,7 +834,9 @@ jobs:
|
||||||
service_account: 'github-service-account@zealous-zebra.iam.gserviceaccount.com'
|
service_account: 'github-service-account@zealous-zebra.iam.gserviceaccount.com'
|
||||||
token_format: 'access_token'
|
token_format: 'access_token'
|
||||||
|
|
||||||
# Wait for the container to finish, then exit with the test's exit status.
|
# Check that the container executed at least 1 Rust test harness test, and that all tests passed.
|
||||||
|
# Then wait for the container to finish, and exit with the test's exit status.
|
||||||
|
# Also shows recent test logs.
|
||||||
#
|
#
|
||||||
# If the container has already finished, `docker wait` should return its status.
|
# If the container has already finished, `docker wait` should return its status.
|
||||||
# But sometimes this doesn't work, so we use `docker inspect` as a fallback.
|
# But sometimes this doesn't work, so we use `docker inspect` as a fallback.
|
||||||
|
|
@ -850,6 +852,13 @@ jobs:
|
||||||
--quiet \
|
--quiet \
|
||||||
--ssh-flag="-o ServerAliveInterval=5" \
|
--ssh-flag="-o ServerAliveInterval=5" \
|
||||||
--command=' \
|
--command=' \
|
||||||
|
set -e;
|
||||||
|
docker logs \
|
||||||
|
--tail ${{ env.EXTRA_LOG_LINES }} \
|
||||||
|
${{ inputs.test_id }} | \
|
||||||
|
tee --output-error=exit /dev/stderr | \
|
||||||
|
grep --max-count=1 --extended-regexp --color=always \
|
||||||
|
"test result: .*ok.* [1-9][0-9]* passed.*finished in"; \
|
||||||
EXIT_STATUS=$( \
|
EXIT_STATUS=$( \
|
||||||
docker wait ${{ inputs.test_id }} || \
|
docker wait ${{ inputs.test_id }} || \
|
||||||
docker inspect --format "{{.State.ExitCode}}" ${{ inputs.test_id }} || \
|
docker inspect --format "{{.State.ExitCode}}" ${{ inputs.test_id }} || \
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue