Skip to content

Commit

Permalink
Updated the e2e container tests for release pipeline to observe exit …
Browse files Browse the repository at this point in the history
…status of test orchestration container.
  • Loading branch information
gzukel committed May 15, 2024
1 parent 4950504 commit 6925513
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
* []() - 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 6925513

Please sign in to comment.