Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 1 addition & 5 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@
fail-fast: false
matrix:
# Test against all versions supported by rubygems
ruby_version: ["2.7", "3.0", "3.1", "3.2", "3.3", "3.4", "4.0"]
ruby_version: ["2.7", "3.0", "3.1", "3.2", "3.3", "3.4", "4.0", "head"]
sys:
- os: ubuntu-latest
rust_toolchain: ${{ needs.fetch_ci_data.outputs.minimum-supported-rust-version }}
Expand All @@ -81,14 +81,10 @@
sys:
os: macos-15
rust_toolchain: stable
- ruby_version: mswin

Check warning on line 84 in .github/workflows/ci.yml

View workflow job for this annotation

GitHub Actions / 🧪 Test (mswin, windows-2022, stable-x86_64-pc-windows-msvc)

mswin builds use ruby-master, and which is unstable and may break your build at any time (see https://github.com/MSP-Greg/ruby-loco/issues/12)
sys:
os: windows-2022
rust_toolchain: stable-x86_64-pc-windows-msvc
- ruby_version: "ruby-head"
sys:
os: ubuntu-latest
rust_toolchain: stable
# TODO: Remove allow_failure after 2025-01-01 (known Windows compatibility issues)
- ruby_version: "3.4"
allow_failure: true
Expand Down Expand Up @@ -183,7 +179,7 @@

- name: 🧪 Cargo test
shell: bash
if: matrix.ruby_version != 'mswin'

Check warning on line 182 in .github/workflows/ci.yml

View workflow job for this annotation

GitHub Actions / 🧪 Test (mswin, windows-2022, stable-x86_64-pc-windows-msvc)

mswin builds use ruby-master, and which is unstable and may break your build at any time (see https://github.com/MSP-Greg/ruby-loco/issues/12)
run: |
ulimit -c unlimited
bundle exec rake test:cargo
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/integration.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ jobs:
run: cargo test --release
os: ["ubuntu-latest", "windows-latest", "macos-15"]
rust: ["stable"]
ruby: ["3.2", "3.3", "3.4"]
ruby: ["3.2", "3.3", "3.4", "4.0", "head"]
exclude:
- repo:
slug: magnus-0.5
Expand Down
Loading