try adding orc test on linux
This commit is contained in:
parent
40ea0b8ebe
commit
77ebfc8a2d
|
@ -18,6 +18,12 @@ jobs:
|
||||||
builder: ubuntu-latest
|
builder: ubuntu-latest
|
||||||
shell: bash --noprofile --norc -e -o pipefail
|
shell: bash --noprofile --norc -e -o pipefail
|
||||||
tests: all
|
tests: all
|
||||||
|
- os: linux
|
||||||
|
cpu: amd64
|
||||||
|
builder: ubuntu-latest
|
||||||
|
shell: bash --noprofile --norc -e -o pipefail
|
||||||
|
tests: all
|
||||||
|
testOrc: true
|
||||||
- os: macos
|
- os: macos
|
||||||
cpu: amd64
|
cpu: amd64
|
||||||
builder: macos-latest
|
builder: macos-latest
|
||||||
|
@ -43,7 +49,7 @@ jobs:
|
||||||
run:
|
run:
|
||||||
shell: ${{ matrix.shell }} {0}
|
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 }}
|
runs-on: ${{ matrix.builder }}
|
||||||
timeout-minutes: 80
|
timeout-minutes: 80
|
||||||
steps:
|
steps:
|
||||||
|
@ -59,6 +65,11 @@ jobs:
|
||||||
shell: ${{ matrix.shell }}
|
shell: ${{ matrix.shell }}
|
||||||
nim_version: ${{ env.nim_version }}
|
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 ##
|
## Part 1 Tests ##
|
||||||
- name: Unit tests
|
- name: Unit tests
|
||||||
if: matrix.tests == 'unittest' || matrix.tests == 'all'
|
if: matrix.tests == 'unittest' || matrix.tests == 'all'
|
||||||
|
|
Loading…
Reference in New Issue