From d9d1797b2683a90bf3b4228c2b9169dd9117ec6a Mon Sep 17 00:00:00 2001 From: Jaremy Creechley Date: Wed, 2 Aug 2023 17:38:25 -0700 Subject: [PATCH] try setting orc before NBS? --- .github/workflows/ci.yml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 49b95dec..dba109a1 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -57,6 +57,12 @@ jobs: with: submodules: recursive + ## Configure ORC on certain runs + - name: Setup ORC Test + if: matrix.tests == 'orc' + run: | + echo "CODEX_USE_ORC=1" >> $GITHUB_ENV + - name: Setup Nimbus Build System uses: ./.github/actions/nimbus-build-system with: @@ -64,12 +70,6 @@ jobs: shell: ${{ matrix.shell }} nim_version: ${{ env.nim_version }} - ## Part 1 Tests ## - - name: Setup ORC Test - if: matrix.tests == 'orc' - run: | - echo "CODEX_USE_ORC=1" >> $GITHUB_ENV - ## Part 1 Tests ## - name: Unit tests if: matrix.tests == 'unittest' || matrix.tests == 'all' || matrix.tests == 'orc'