Skip to content

Commit

Permalink
CI: don't let Julia nightly break CI; consider it an early warning
Browse files Browse the repository at this point in the history
  • Loading branch information
tkluck committed May 25, 2022
1 parent 72aa00a commit 62bbbde
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion .github/workflows/CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,27 +16,35 @@ jobs:
test:
name: Julia ${{ matrix.version }} - ${{ matrix.os }} - ${{ matrix.arch }}
runs-on: ${{ matrix.os }}
continue-on-error: ${{ matrix.experimental }}
strategy:
fail-fast: false
matrix:
version:
- "1.6" # LTS
- "1.7"
- "1" # Latest Release
- nightly
os:
- ubuntu-latest
- macOS-latest
- windows-latest
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
Expand Down

2 comments on commit 62bbbde

@tkluck
Copy link
Owner Author

@tkluck tkluck commented on 62bbbde May 25, 2022

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@JuliaRegistrator
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Registration pull request created: JuliaRegistries/General/61055

After the above pull request is merged, it is recommended that a tag is created on this repository for the registered package version.

This will be done automatically if the Julia TagBot GitHub Action is installed, or can be done manually through the github interface, or via:

git tag -a v1.4.2 -m "<description of version>" 62bbbded5df7c254855dd78775e47cedb406101e
git push origin v1.4.2

Please sign in to comment.