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 836447b commit 0ac6530Copy full SHA for 0ac6530
1 file changed
.github/workflows/presubmit.yaml
@@ -135,6 +135,8 @@ jobs:
135
sudo apt-get install adb
136
adb devices
137
- name: Run E2E tests
138
+ id: run_e2e_tests
139
+ continue-on-error: true
140
run: |
141
cd e2etests
142
# TODO(b/383428636): Running E2E tests in parallel requires enabling
@@ -146,3 +148,6 @@ jobs:
146
148
--test_env=CVDR_PATH=$(which cvdr) \
147
149
--test_env=CVDR_CONFIG_PATH=$(realpath -s ../scripts/on-premises/single-server/cvdr.toml) \
150
--test_output=errors
151
+ - name: Log of cloud orchestrator
152
+ if: ${{ steps.run_e2e_tests.outcome == 'failure' }}
153
+ run: docker logs $(docker ps -q --filter ancestor=cuttlefish-cloud-orchestrator)
0 commit comments