diff --git a/.github/workflows/execute_advanced_tests.yaml b/.github/workflows/execute_advanced_tests.yaml index 24b93481d9..c1b0cd6b45 100644 --- a/.github/workflows/execute_advanced_tests.yaml +++ b/.github/workflows/execute_advanced_tests.yaml @@ -57,7 +57,7 @@ jobs: exit 0 else echo "Testing in progress still...." - if [ "${{ github.event.inputs.e2e-upgrade-test }}" == "true" ]; then + if [ "${{ github.event.inputs.debug }}" == "true" ]; then docker logs $container_id || echo "no logs" fi fi @@ -96,7 +96,7 @@ jobs: exit 0 else echo "Testing in progress still...." - if [ "${{ github.event.inputs.e2e-upgrade-test }}" == "true" ]; then + if [ "${{ github.event.inputs.debug }}" == "true" ]; then docker logs $container_id || echo "no logs" fi fi @@ -135,7 +135,7 @@ jobs: exit 0 else echo "Testing in progress still...." - if [ "${{ github.event.inputs.e2e-upgrade-test }}" == "true" ]; then + if [ "${{ github.event.inputs.debug }}" == "true" ]; then docker logs $container_id || echo "no logs" fi fi @@ -174,7 +174,7 @@ jobs: exit 0 else echo "Testing in progress still...." - if [ "${{ github.event.inputs.e2e-upgrade-test }}" == "true" ]; then + if [ "${{ github.event.inputs.debug }}" == "true" ]; then docker logs $container_id || echo "no logs" fi fi diff --git a/changelog.md b/changelog.md index 61ef0dac5f..a71d10d863 100644 --- a/changelog.md +++ b/changelog.md @@ -60,6 +60,7 @@ ### CI +* [1958](https://github.com/zeta-chain/node/pull/1958) - Fix e2e advanced test debug checkbox. * [1945](https://github.com/zeta-chain/node/pull/1945) - update advanced testing pipeline to not execute tests that weren't selected so they show skipped instead of skipping steps. * [1940](https://github.com/zeta-chain/node/pull/1940) - adjust release pipeline to be created as pre-release instead of latest * [1867](https://github.com/zeta-chain/node/pull/1867) - default restore_type for full node docker-compose to snapshot instead of statesync for reliability.