fix(ci): bump log level during CI runs (#1530)

This commit is contained in:
Hanno Cornelius 2023-02-03 10:04:34 +02:00 committed by GitHub
parent f36d708e76
commit 3b0e7b1872
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 6 additions and 6 deletions

View File

@ -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

View File

@ -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