From 0759af2ec0093aa8dea2082c25ad7c6e3fdeaa2f Mon Sep 17 00:00:00 2001 From: Grant Zukel <80433392+gzukel@users.noreply.github.com> Date: Thu, 28 Mar 2024 09:00:03 -0600 Subject: [PATCH] fix: debug logging checkbox (#1958) * fix: debug logs checkbox for e2e advanced test. * updated --- .github/workflows/execute_advanced_tests.yaml | 8 ++++---- changelog.md | 1 + 2 files changed, 5 insertions(+), 4 deletions(-) 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.