Skip to content

Commit

Permalink
Update minimum rust version to 1.63
Browse files Browse the repository at this point in the history
  • Loading branch information
GuillaumeGomez committed Jul 21, 2023
1 parent d340256 commit 3fc0f60
Show file tree
Hide file tree
Showing 5 changed files with 372 additions and 9 deletions.
8 changes: 4 additions & 4 deletions .cirrus.yml
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
task:
name: rust 1.59 on freebsd 13
name: rust 1.63 on freebsd 13
freebsd_instance:
image: freebsd-13-1-release-amd64
setup_script:
- curl https://sh.rustup.rs -sSf --output rustup.sh
- sh rustup.sh -y --profile=minimal --default-toolchain=1.59
- sh rustup.sh -y --profile=minimal --default-toolchain=1.63
- . $HOME/.cargo/env
- rustup --version
- rustup component add clippy
Expand Down Expand Up @@ -37,14 +37,14 @@ task:
- FREEBSD_CI=1 cargo test --lib -j1 -- --ignored

task:
name: rust 1.59 on mac m1
name: rust 1.63 on mac m1
macos_instance:
image: ghcr.io/cirruslabs/macos-monterey-base:latest
setup_script:
- brew update
- brew install curl
- curl https://sh.rustup.rs -sSf --output rustup.sh
- sh rustup.sh -y --profile=minimal --default-toolchain=1.59
- sh rustup.sh -y --profile=minimal --default-toolchain=1.63
- source $HOME/.cargo/env
- rustup --version
- rustup component add clippy
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ jobs:
- { os: 'ubuntu-latest', target: 'x86_64-linux-android', cross: true }
- { os: 'ubuntu-latest', target: 'i686-linux-android', cross: true }
toolchain:
- "1.59.0" # minimum supported rust version
- "1.63.0" # minimum supported rust version
- stable
- nightly
steps:
Expand Down Expand Up @@ -139,7 +139,7 @@ jobs:
- macos-latest
- windows-latest
toolchain:
- "1.59.0" # minimum supported rust version
- "1.63.0" # minimum supported rust version
- stable
- nightly
steps:
Expand Down Expand Up @@ -205,7 +205,7 @@ jobs:
strategy:
matrix:
toolchain:
- "1.59.0" # minimum supported rust version
- "1.63.0" # minimum supported rust version
- stable
- nightly
steps:
Expand Down
Loading

0 comments on commit 3fc0f60

Please sign in to comment.