Skip to content

Commit

Permalink
individual test sets
Browse files Browse the repository at this point in the history
  • Loading branch information
thorek1 committed Nov 19, 2023
1 parent 8fc25f4 commit c539281
Showing 1 changed file with 29 additions and 0 deletions.
29 changes: 29 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,26 +21,55 @@ jobs:
- windows-latest
arch:
- x64
test_env_var:
- "estimation"
- "higher_order"
- "plots"
- "basic"
include:
- os: ubuntu-latest
prefix: xvfb-run
- version: '1.8'
os: ubuntu-latest
arch: x64
test_env_var: "basic"
- version: '1.8'
os: ubuntu-latest
arch: x64
test_env_var: "plots"
- version: '^1.10.0-0'
os: ubuntu-latest
arch: x64
test_env_var: "estimation"
allow_failure: true
- version: '^1.10.0-0'
os: ubuntu-latest
arch: x64
test_env_var: "higher_order"
allow_failure: true
- version: '^1.10.0-0'
os: ubuntu-latest
arch: x64
test_env_var: "plots"
allow_failure: true
- version: '^1.10.0-0'
os: ubuntu-latest
arch: x64
test_env_var: "basic"
allow_failure: true
- version: 'nightly'
os: ubuntu-latest
arch: x64
test_env_var: "basic"
allow_failure: true
steps:
- uses: actions/checkout@v4
- uses: julia-actions/setup-julia@v1
with:
version: ${{ matrix.version }}
arch: ${{ matrix.arch }}
- name: Set Custom Test Environment Variable
run: echo "TEST_ENV_VAR=${{ matrix.test_env_var }}" >> $GITHUB_ENV
- name: Set JULIA_NUM_THREADS for Julia 1.9 on Ubuntu
if: matrix.version == '1.9' && matrix.os == 'ubuntu-latest'
run: echo "JULIA_NUM_THREADS=2" >> $GITHUB_ENV
Expand Down

0 comments on commit c539281

Please sign in to comment.