aboutsummaryrefslogtreecommitdiff
path: root/.builds
diff options
context:
space:
mode:
Diffstat (limited to '.builds')
-rw-r--r--.builds/freebsd.yml9
-rw-r--r--.builds/linux.yml13
2 files changed, 12 insertions, 10 deletions
diff --git a/.builds/freebsd.yml b/.builds/freebsd.yml
index ec2e1616..70ee6d43 100644
--- a/.builds/freebsd.yml
+++ b/.builds/freebsd.yml
@@ -21,14 +21,15 @@ tasks:
- test: |
cd alacritty
cargo test
+ - oldstable: |
+ cd alacritty
+ rustup toolchain install --profile minimal 1.45.2
+ rustup default 1.45.2
+ cargo test
- clippy: |
cd alacritty
rustup component add clippy
cargo clippy --all-targets
- - oldstable: |
- cd alacritty
- rustup toolchain install --profile minimal 1.43.1
- cargo +1.43.1 test
- feature-wayland: |
cd alacritty/alacritty
cargo test --no-default-features --features=wayland
diff --git a/.builds/linux.yml b/.builds/linux.yml
index 90c31836..3f793175 100644
--- a/.builds/linux.yml
+++ b/.builds/linux.yml
@@ -24,17 +24,18 @@ tasks:
cd alacritty
rustup toolchain install nightly -c rustfmt
cargo +nightly fmt -- --check
+ - oldstable: |
+ cd alacritty
+ rustup toolchain install --profile minimal 1.45.2
+ rustup default 1.45.2
+ cargo test
- clippy: |
cd alacritty
rustup component add clippy
cargo clippy --all-targets
- - oldstable: |
- cd alacritty
- rustup toolchain install --profile minimal 1.43.1
- cargo +1.43.1 test
- feature-wayland: |
cd alacritty/alacritty
- cargo +1.43.1 test --no-default-features --features=wayland
+ cargo test --no-default-features --features=wayland
- feature-x11: |
cd alacritty/alacritty
- cargo +1.43.1 test --no-default-features --features=x11
+ cargo test --no-default-features --features=x11