From dca59c7372e66ea719df43958557b125a5ab9c2d Mon Sep 17 00:00:00 2001 From: fryorcraken Date: Wed, 15 Oct 2025 12:29:52 +1100 Subject: [PATCH] remove --verbose to avoid issue with long logs --- .github/workflows/test-nimble-install.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/test-nimble-install.yml b/.github/workflows/test-nimble-install.yml index 2361f8dba..887557f7a 100644 --- a/.github/workflows/test-nimble-install.yml +++ b/.github/workflows/test-nimble-install.yml @@ -12,9 +12,9 @@ jobs: matrix: os: [ubuntu-latest, macos-latest] # TODO: Windows nim-version: ['2.2.4'] # TODO: tests with more versions - + runs-on: ${{ matrix.os }} - + steps: - name: Checkout repository uses: actions/checkout@v4 @@ -36,13 +36,13 @@ jobs: - name: Install waku from head of PR branch working-directory: examples/nimble - run: nimble --verbose install "waku@#${{ github.event.pull_request.head.sha }}" + run: nimble install "waku@#${{ github.event.pull_request.head.sha }}" - name: List installed packages working-directory: examples/nimble run: | nimble list --installed --ver - + - name: Build example project working-directory: examples/nimble run: | @@ -53,4 +53,4 @@ jobs: working-directory: examples/nimble run: | echo "Running example project..." - nimble --verbose run \ No newline at end of file + nimble --verbose run