From fee6f9b4d5d575930734ffa244a4183e261a075a Mon Sep 17 00:00:00 2001 From: JCNoguera <88061365+VmMad@users.noreply.github.com> Date: Wed, 4 Dec 2024 14:26:13 +0100 Subject: [PATCH] feat(ci): tone down node logs (#4319) * feat(ci): tone down node logs * test: run e2e * temp: use wallet e2e instead * fix: change env too * fix: revert temp commits * refactor: add env table --- .github/workflows/_e2e.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/workflows/_e2e.yml b/.github/workflows/_e2e.yml index c68e7efb83f..c40ca8da2de 100644 --- a/.github/workflows/_e2e.yml +++ b/.github/workflows/_e2e.yml @@ -26,6 +26,9 @@ concurrency: group: e2e-${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }} cancel-in-progress: true +env: + RUST_LOG: warn + jobs: # Run e2e test against localnet built on the develop branch localnet: @@ -64,7 +67,7 @@ jobs: - name: Set env run: | echo "VITE_IOTA_BIN=$PWD/target/debug/iota" >> $GITHUB_ENV - echo "E2E_RUN_LOCAL_NET_CMD=(RUST_LOG=info RUST_BACKTRACE=1 $(echo $PWD/target/debug/iota) start --with-faucet --force-regenesis --with-indexer --with-graphql)" >> $GITHUB_ENV + echo "E2E_RUN_LOCAL_NET_CMD=(RUST_BACKTRACE=1 $(echo $PWD/target/debug/iota) start --with-faucet --force-regenesis --with-indexer --with-graphql)" >> $GITHUB_ENV - name: Run TS SDK e2e tests if: inputs.isTypescriptSDK || inputs.isRust || github.ref_name == 'develop'