try adding orc test on linux

This commit is contained in:
Jaremy Creechley 2023-08-01 18:20:57 -07:00
parent 40ea0b8ebe
commit 77ebfc8a2d
No known key found for this signature in database
GPG Key ID: 4E66FB67B21D3300
1 changed files with 12 additions and 1 deletions

View File

@ -18,6 +18,12 @@ jobs:
builder: ubuntu-latest
shell: bash --noprofile --norc -e -o pipefail
tests: all
- os: linux
cpu: amd64
builder: ubuntu-latest
shell: bash --noprofile --norc -e -o pipefail
tests: all
testOrc: true
- os: macos
cpu: amd64
builder: macos-latest
@ -43,7 +49,7 @@ jobs:
run:
shell: ${{ matrix.shell }} {0}
name: '${{ matrix.os }}-${{ matrix.cpu }}-tests-${{ matrix.tests }}'
name: '${{ matrix.os }}-${{ matrix.cpu }}-tests-${{ matrix.tests }}-${{ matrix.testOrc }}'
runs-on: ${{ matrix.builder }}
timeout-minutes: 80
steps:
@ -59,6 +65,11 @@ jobs:
shell: ${{ matrix.shell }}
nim_version: ${{ env.nim_version }}
## Part 1 Tests ##
- name: Setup ORC Test on Some Linux
if: matrix.testOrc == true
run: echo '--mm:orc' >> config.nims
## Part 1 Tests ##
- name: Unit tests
if: matrix.tests == 'unittest' || matrix.tests == 'all'