try setting orc before NBS?

This commit is contained in:
Jaremy Creechley 2023-08-02 17:38:25 -07:00
parent 5f02849d59
commit d9d1797b26
No known key found for this signature in database
GPG Key ID: 4E66FB67B21D3300
1 changed files with 6 additions and 6 deletions

View File

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