From 0769d5fe9893d7496db24ae5d5e9b9267f4aa3d7 Mon Sep 17 00:00:00 2001 From: Hanno Cornelius <68783915+jm-clius@users.noreply.github.com> Date: Fri, 3 Feb 2023 10:04:34 +0200 Subject: [PATCH] fix(ci): bump log level during CI runs (#1530) --- .github/workflows/ci-experimental.yml | 4 ++-- .github/workflows/ci.yml | 8 ++++---- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/ci-experimental.yml b/.github/workflows/ci-experimental.yml index 1b9ed421c..bb07af61c 100644 --- a/.github/workflows/ci-experimental.yml +++ b/.github/workflows/ci-experimental.yml @@ -84,7 +84,7 @@ jobs: key: ${{ runner.os }}-zerokit-${{ steps.submodules.outputs.zerokit-hash }} - name: Build binaries - run: make V=1 LOG_LEVEL=TRACE v2 + run: make V=1 LOG_LEVEL=DEBUG v2 test-v2: needs: changes @@ -122,4 +122,4 @@ jobs: key: ${{ runner.os }}-zerokit-${{ steps.submodules.outputs.zerokit-hash }} - name: Run tests - run: make V=1 LOG_LEVEL=TRACE test2 + run: make V=1 LOG_LEVEL=DEBUG test2 diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index a253a1572..a10575b35 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -86,7 +86,7 @@ jobs: key: ${{ runner.os }}-nim-${{ steps.submodules.outputs.nim-hash }} - name: Build binaries - run: make V=1 LOG_LEVEL=TRACE v2 + run: make V=1 LOG_LEVEL=DEBUG v2 test-v2: needs: changes @@ -117,7 +117,7 @@ jobs: key: ${{ runner.os }}-nim-${{ steps.submodules.outputs.nim-hash }} - name: Run tests - run: make V=1 LOG_LEVEL=TRACE test2 + run: make V=1 LOG_LEVEL=DEBUG test2 build-legacy: @@ -149,7 +149,7 @@ jobs: key: ${{ runner.os }}-nim-${{ steps.submodules.outputs.nim-hash }} - name: Build binaries - run: make V=1 LOG_LEVEL=TRACE v1 + run: make V=1 LOG_LEVEL=DEBUG v1 test-legacy: needs: changes @@ -180,4 +180,4 @@ jobs: key: ${{ runner.os }}-nim-${{ steps.submodules.outputs.nim-hash }} - name: Run tests - run: make V=1 LOG_LEVEL=TRACE test1 + run: make V=1 LOG_LEVEL=DEBUG test1