Skip to content

Commit

Permalink
CI: re-add nightly
Browse files Browse the repository at this point in the history
  • Loading branch information
benlorenz committed Feb 26, 2024
1 parent 23c4578 commit 7b0b9ef
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 3 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/runtests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,13 +26,14 @@ jobs:
# github services (for mongodb service) only works on linux
test-with-mongodb:
runs-on: ${{ matrix.os }}
continue-on-error: ${{ matrix.julia-version == '1.11-nightly' }}
continue-on-error: ${{ matrix.julia-version == '1.11-nightly' || matrix.julia-version == 'nightly' }}
strategy:
matrix:
julia-version:
- '~1.6.0-0'
- '~1.10.0-0'
- '1.11-nightly'
- 'nightly'
os: ['ubuntu-latest']
cxxwrap: [ '' ]

Expand Down Expand Up @@ -86,14 +87,15 @@ jobs:
# this one is only for macos, ubuntu is run with mongodb in the other job
test:
runs-on: ${{ matrix.os }}
continue-on-error: ${{ matrix.julia-version == '1.11-nightly' }}
continue-on-error: ${{ matrix.julia-version == '1.11-nightly' || matrix.julia-version == 'nightly' }}
env:
JULIA_PKG_SERVER: ""
strategy:
matrix:
julia-version:
- '1.10'
- '1.11-nightly'
- 'nightly'
os: [ 'macos-14' ] # aarch64
include:
- os: 'macos-13' # x86_64
Expand Down
8 changes: 7 additions & 1 deletion OscarCI.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,12 +14,18 @@ julia-version = [ "~1.6.0-0", "~1.10.0-0"]
test = true

[include]
[include.nightly]
[include.111nightly]
Oscar = "<matching>"
Polymake = ""
julia-version = "1.11-nightly"
os = "ubuntu-latest"

[include.nightly]
Oscar = "<matching>"
Polymake = ""
julia-version = "nightly"
os = "ubuntu-latest"

[include.macamd64lts]
Oscar = "<matching>"
Polymake = ""
Expand Down

0 comments on commit 7b0b9ef

Please sign in to comment.