Skip to content

Commit

Permalink
refactor: use QUICK_AND_DIRTY_COMPILER flag for CI (#1708)
Browse files Browse the repository at this point in the history
  • Loading branch information
vpavlin committed May 2, 2023
1 parent ba12d1c commit 2151042
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci-experimental.yml
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ jobs:
key: ${{ runner.os }}-zerokit-${{ steps.submodules.outputs.zerokit-hash }}

- name: Build binaries
run: make V=1 LOG_LEVEL=DEBUG v2
run: make V=1 LOG_LEVEL=DEBUG QUICK_AND_DIRTY_COMPILER=1 v2

test-v2:
needs: changes
Expand Down Expand Up @@ -122,4 +122,4 @@ jobs:
key: ${{ runner.os }}-zerokit-${{ steps.submodules.outputs.zerokit-hash }}

- name: Run tests
run: make V=1 LOG_LEVEL=DEBUG test2 testwakunode2
run: make V=1 LOG_LEVEL=DEBUG QUICK_AND_DIRTY_COMPILER=1 test2 testwakunode2
8 changes: 4 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ jobs:
key: ${{ runner.os }}-nim-${{ steps.submodules.outputs.nim-hash }}

- name: Build binaries
run: make V=1 LOG_LEVEL=DEBUG v2 tools
run: make V=1 LOG_LEVEL=DEBUG QUICK_AND_DIRTY_COMPILER=1 v2 tools

test-v2:
needs: changes
Expand Down Expand Up @@ -117,7 +117,7 @@ jobs:
key: ${{ runner.os }}-nim-${{ steps.submodules.outputs.nim-hash }}

- name: Run tests
run: make V=1 LOG_LEVEL=DEBUG test2 testwakunode2
run: make V=1 LOG_LEVEL=DEBUG QUICK_AND_DIRTY_COMPILER=1 test2 testwakunode2


build-legacy:
Expand Down Expand Up @@ -149,7 +149,7 @@ jobs:
key: ${{ runner.os }}-nim-${{ steps.submodules.outputs.nim-hash }}

- name: Build binaries
run: make V=1 LOG_LEVEL=DEBUG v1
run: make V=1 LOG_LEVEL=DEBUG QUICK_AND_DIRTY_COMPILER=1 v1

test-legacy:
needs: changes
Expand Down Expand Up @@ -180,4 +180,4 @@ jobs:
key: ${{ runner.os }}-nim-${{ steps.submodules.outputs.nim-hash }}

- name: Run tests
run: make V=1 LOG_LEVEL=DEBUG test1
run: make V=1 LOG_LEVEL=DEBUG QUICK_AND_DIRTY_COMPILER=1 test1

0 comments on commit 2151042

Please sign in to comment.