From 77ebfc8a2d872a1bfeb21f98bfac146b4c75c51e Mon Sep 17 00:00:00 2001 From: Jaremy Creechley Date: Tue, 1 Aug 2023 18:20:57 -0700 Subject: [PATCH] try adding orc test on linux --- .github/workflows/ci.yml | 13 ++++++++++++- 1 file changed, 12 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 9fcb1de7..2f2fb750 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -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'