First test to correct CI failures
This commit is contained in:
parent
6dd7add132
commit
aa623eb828
26
.github/workflows/ci.yml
vendored
26
.github/workflows/ci.yml
vendored
@ -7,17 +7,39 @@ jobs:
|
|||||||
name: Julia ${{ matrix.version }} - ${{ matrix.os }} - ${{ matrix.arch }}
|
name: Julia ${{ matrix.version }} - ${{ matrix.os }} - ${{ matrix.arch }}
|
||||||
runs-on: ${{ matrix.os }}
|
runs-on: ${{ matrix.os }}
|
||||||
strategy:
|
strategy:
|
||||||
|
fail-fast: false # allows to continue if one fails
|
||||||
matrix:
|
matrix:
|
||||||
version:
|
version:
|
||||||
- '1.0'
|
|
||||||
- '1.4'
|
- '1.4'
|
||||||
- 'nightly'
|
|
||||||
os:
|
os:
|
||||||
- ubuntu-latest
|
- ubuntu-latest
|
||||||
- macOS-latest
|
- macOS-latest
|
||||||
|
# - windows-latest # TODO: windows tests
|
||||||
arch:
|
arch:
|
||||||
- x64
|
- x64
|
||||||
- x86
|
- x86
|
||||||
|
allow-failure: [false]
|
||||||
|
include:
|
||||||
|
- version: 'nightly'
|
||||||
|
os: ubuntu-latest
|
||||||
|
arch: x64
|
||||||
|
allow-failure: true
|
||||||
|
- version: 'nightly'
|
||||||
|
os: ubuntu-latest
|
||||||
|
arch: x86
|
||||||
|
allow-failure: true
|
||||||
|
- version: 'nightly'
|
||||||
|
os: macOS-latest
|
||||||
|
arch: x64
|
||||||
|
allow-failure: true
|
||||||
|
# - version: 'nightly'
|
||||||
|
# os: windows-latest
|
||||||
|
# arch: x64
|
||||||
|
# allow-failure: true
|
||||||
|
# - version: 'nightly'
|
||||||
|
# os: windows-latest
|
||||||
|
# arch: x86
|
||||||
|
# allow-failure: true
|
||||||
exclude:
|
exclude:
|
||||||
- os: macOS-latest
|
- os: macOS-latest
|
||||||
arch: x86
|
arch: x86
|
||||||
|
Loading…
Reference in New Issue
Block a user