From 62bbbded5df7c254855dd78775e47cedb406101e Mon Sep 17 00:00:00 2001 From: Timo Kluck Date: Wed, 25 May 2022 22:06:30 +0100 Subject: [PATCH] CI: don't let Julia nightly break CI; consider it an early warning --- .github/workflows/CI.yml | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/.github/workflows/CI.yml b/.github/workflows/CI.yml index f70de42..4099bfe 100644 --- a/.github/workflows/CI.yml +++ b/.github/workflows/CI.yml @@ -16,6 +16,7 @@ jobs: test: name: Julia ${{ matrix.version }} - ${{ matrix.os }} - ${{ matrix.arch }} runs-on: ${{ matrix.os }} + continue-on-error: ${{ matrix.experimental }} strategy: fail-fast: false matrix: @@ -23,7 +24,6 @@ jobs: - "1.6" # LTS - "1.7" - "1" # Latest Release - - nightly os: - ubuntu-latest - macOS-latest @@ -31,12 +31,20 @@ jobs: arch: - x64 - x86 + experimental: + - false exclude: # Test 32-bit only on Linux - os: macOS-latest arch: x86 - os: windows-latest arch: x86 + include: + - os: ubuntu-latest + version: nightly + arch: x64 + experimental: true + steps: - name: Avoid line ending issues on Windows run: git config --global core.autocrlf false