Skip to content

Commit

Permalink
ci: Remove tests with rust < 1.63
Browse files Browse the repository at this point in the history
Since the increase to MSRV in [1], we no longer need to test with old
versions of Rust.

This makes CI identical to `main`, with the exception of branch
configuration.

[1]: rust-lang#4040
  • Loading branch information
tgross35 committed Nov 16, 2024
1 parent 9e88dbd commit 2d58059
Showing 1 changed file with 9 additions and 16 deletions.
25 changes: 9 additions & 16 deletions .github/workflows/full_ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,13 +33,7 @@ jobs:
- stable
- beta
- nightly
# FIXME: Disabled due to:
# error: failed to parse registry's information for: serde
# 1.13.0,
- 1.19.0
- 1.24.0
- 1.25.0
- 1.30.0
- 1.63.0
steps:
- uses: actions/checkout@v4
- name: Setup Rust toolchain
Expand All @@ -57,9 +51,10 @@ jobs:
max-parallel: 4
matrix:
target:
- { toolchain: stable, os: macos-13 }
- { toolchain: beta, os: macos-13 }
- { toolchain: nightly, os: macos-13 }
- { toolchain: stable, os: macos-14 }
- { toolchain: beta, os: macos-14 }
- { toolchain: nightly, os: macos-14 }
- { toolchain: 1.63.0, os: macos-14 }
runs-on: ${{ matrix.target.os }}
steps:
- uses: actions/checkout@v4
Expand All @@ -77,10 +72,7 @@ jobs:
fail-fast: true
matrix:
toolchain:
- 1.19.0
- 1.24.0
- 1.25.0
- 1.30.0
- 1.63.0
- stable
steps:
- uses: actions/checkout@v4
Expand All @@ -93,12 +85,12 @@ jobs:

macos:
name: macOS
runs-on: macos-13
runs-on: macos-14
strategy:
fail-fast: true
matrix:
target:
- x86_64-apple-darwin
- aarch64-apple-darwin
steps:
- uses: actions/checkout@v4
- name: Setup Rust toolchain
Expand All @@ -120,6 +112,7 @@ jobs:
ARCH_BITS: 64
ARCH: x86_64
- target: x86_64-pc-windows-msvc
# FIXME: It currently causes segfaults.
#- target: i686-pc-windows-gnu
# env:
# ARCH_BITS: 32
Expand Down

0 comments on commit 2d58059

Please sign in to comment.