Skip to content

Commit

Permalink
Disable MacOS test on LTS
Browse files Browse the repository at this point in the history
This is because the latest MacOS doesn't work with x86, and Julia LTS doesn't
work with MacOS AArch64.
So instead, we test with 1.9 for MacOS.
  • Loading branch information
jakobnissen committed Jul 3, 2024
1 parent c878a46 commit ee6f41b
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion .github/workflows/UnitTests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,13 +15,20 @@ jobs:
- '1.6' # LTS
- '1'
julia-arch: [x86]
os: [ubuntu-latest, windows-latest, macOS-latest]
os: [ubuntu-latest, windows-latest]
experimental: [false]
include:
- julia-version: nightly
julia-arch: x86
os: ubuntu-latest
experimental: true
# MacOS Aarch64 reached Tier1 support of Julia in version 1.9
- julia-version: '1.9'
os: macOS-latest
experimental: false
- julia-version: '1'
os: macOS-latest
experimental: false

steps:
- name: Checkout Repository
Expand Down

2 comments on commit ee6f41b

@jakobnissen
Copy link
Member Author

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/110359

Tip: Release Notes

Did you know you can add release notes too? Just add markdown formatted text underneath the comment after the text
"Release notes:" and it will be added to the registry PR, and if TagBot is installed it will also be added to the
release that TagBot creates. i.e.

@JuliaRegistrator register

Release notes:

## Breaking changes

- blah

To add them here just re-invoke and the PR will be updated.

Tagging

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.0.4 -m "<description of version>" ee6f41b76d4dcbe92052946fc6fa70bb38031866
git push origin v1.0.4

Please sign in to comment.