aboutsummaryrefslogtreecommitdiff
path: root/.builds
diff options
context:
space:
mode:
authorChristian Duerr <contact@christianduerr.com>2024-02-12 21:01:20 +0100
committerKirill Chibisov <contact@kchibisov.com>2024-02-14 01:20:49 +0400
commit1645a70168ca012bcf6f2cab42271dd51ae682a2 (patch)
treeafd9cc1091a9a42e61ec2333686795a6fee100ed /.builds
parent5c4469ffa7727b7a8d82f3f8261613a30591b4de (diff)
downloadalacritty-1645a70168ca012bcf6f2cab42271dd51ae682a2.tar.gz
alacritty-1645a70168ca012bcf6f2cab42271dd51ae682a2.zip
Use dynamic MSRV for oldstable CI
Instead of manually specifying the oldstable version in all our CI scripts, it is now pulled from the `Cargo.toml` which simplifies the update process. The contributing guide has also been updated to not include the explicit version and its wording has been loosened a bit to correctly represent current maintenance practices.
Diffstat (limited to '.builds')
-rw-r--r--.builds/freebsd.yml5
-rw-r--r--.builds/linux.yml5
2 files changed, 6 insertions, 4 deletions
diff --git a/.builds/freebsd.yml b/.builds/freebsd.yml
index 4c9860b5..5e5021c6 100644
--- a/.builds/freebsd.yml
+++ b/.builds/freebsd.yml
@@ -24,8 +24,9 @@ tasks:
cargo test
- oldstable: |
cd alacritty
- rustup toolchain install --profile minimal 1.70.0
- rustup default 1.70.0
+ oldstable=$(cat alacritty/Cargo.toml | grep "rust-version" | sed 's/.*"\(.*\)".*/\1/')
+ rustup toolchain install --profile minimal $oldstable
+ rustup default $oldstable
cargo test
- clippy: |
cd alacritty
diff --git a/.builds/linux.yml b/.builds/linux.yml
index f2e9038a..e036261b 100644
--- a/.builds/linux.yml
+++ b/.builds/linux.yml
@@ -34,8 +34,9 @@ tasks:
cargo test
- oldstable: |
cd alacritty
- rustup toolchain install --profile minimal 1.70.0
- rustup default 1.70.0
+ oldstable=$(cat alacritty/Cargo.toml | grep "rust-version" | sed 's/.*"\(.*\)".*/\1/')
+ rustup toolchain install --profile minimal $oldstable
+ rustup default $oldstable
cargo test
- clippy: |
cd alacritty