Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: matsadler/magnus
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 0.6.4
Choose a base ref
...
head repository: matsadler/magnus
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 0.6
Choose a head ref
  • 1 commit
  • 1 file changed
  • 1 contributor

Commits on May 10, 2024

  1. better note as to why ci skips ruby 3.1/macos-14

    matsadler committed May 10, 2024
    Copy the full SHA
    5d0001e View commit details
Showing with 12 additions and 0 deletions.
  1. +12 −0 .github/workflows/test.yaml
12 changes: 12 additions & 0 deletions .github/workflows/test.yaml
Original file line number Diff line number Diff line change
@@ -22,6 +22,18 @@ jobs:
rustup-toolchain:
- "1.61"
- stable
exclude:
# The setup-ruby pre-built Ruby 3.1 is built on macos-11
# and something doesn't quite add up when running it on
# macos-14 just for our tests and everything fails with
# dyld: missing symbol called
# unfortunately macos doesn't print what symbol is missing
# so it's hard to debug further
# everything works fine when Ruby 3.1 is built on the same
# version of macos it's running on
- os: macos-latest
ruby-version: "3.1"
rustup-toolchain: stable

steps:
- uses: actions/checkout@v3