Skip to content

Commit

Permalink
ci: Updated the e2e container tests for release pipeline to observe e…
Browse files Browse the repository at this point in the history
…xit status of test orchestration container. (#2188)

* Updated the e2e container tests for release pipeline to observe exit status of test orchestration container.
---------

Co-authored-by: Lucas Bertrand <[email protected]>
  • Loading branch information
gzukel and lumtis authored May 15, 2024
1 parent c9cb5a8 commit 7fa9ada
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 0 deletions.
4 changes: 4 additions & 0 deletions .github/workflows/publish-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -369,6 +369,8 @@ jobs:
shell: bash
run: |
make start-e2e-admin-test
container_id=$(docker ps --filter "ancestor=orchestrator:latest" --format "{{.ID}}")
docker logs -f "${container_id}" & exit $(docker wait "${container_id}")
- name: Mark Job Complete Skipped
if: ${{ github.event.inputs.skip_checks == 'true' }}
Expand All @@ -391,6 +393,8 @@ jobs:
shell: bash
run: |
make start-upgrade-test
container_id=$(docker ps --filter "ancestor=orchestrator:latest" --format "{{.ID}}")
docker logs -f "${container_id}" & exit $(docker wait "${container_id}")
- name: Mark Job Complete Skipped
if: ${{ github.event.inputs.skip_checks == 'true' }}
Expand Down
1 change: 1 addition & 0 deletions changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -111,6 +111,7 @@
* [1891](https://github.com/zeta-chain/node/pull/1891) - fix typo that was introduced to docker-compose and a typo in start.sh for the docker start script for full nodes.
* [1894](https://github.com/zeta-chain/node/pull/1894) - added download binaries and configs to the start sequence so it will download binaries that don't exist
* [1953](https://github.com/zeta-chain/node/pull/1953) - run E2E tests for all PRs
* [2188](https://github.com/zeta-chain/node/pull/2188) - Updated the e2e container tests for release pipeline to observe exit status of test orchestration container.

## Version: v15.0.0

Expand Down

0 comments on commit 7fa9ada

Please sign in to comment.