aboutsummaryrefslogtreecommitdiff
path: root/.builds
diff options
context:
space:
mode:
authorKirill Chibisov <contact@kchibisov.com>2020-10-12 12:22:36 +0300
committerGitHub <noreply@github.com>2020-10-12 12:22:36 +0300
commit721f789b5f98ab5c47e6e817c3c2228636ca0a1a (patch)
tree31d9a149fbcf36c9a824856d1da103c06f67f16c /.builds
parent56e0f5bb05cab709f815ef9cce027b379ce964b8 (diff)
downloadalacritty-721f789b5f98ab5c47e6e817c3c2228636ca0a1a.tar.gz
alacritty-721f789b5f98ab5c47e6e817c3c2228636ca0a1a.zip
Make use of glutin wayland/x11 features
This should allow users that are not using Wayland/X11 to reduce the resulted binary size and compilation times.
Diffstat (limited to '.builds')
-rw-r--r--.builds/freebsd.yml8
1 files changed, 7 insertions, 1 deletions
diff --git a/.builds/freebsd.yml b/.builds/freebsd.yml
index d95b0fb0..10f0333a 100644
--- a/.builds/freebsd.yml
+++ b/.builds/freebsd.yml
@@ -12,10 +12,16 @@ sources:
tasks:
- rustup: |
curl https://sh.rustup.rs -sSf | sh -s -- -y --default-toolchain stable --profile minimal
- - 1-43-1: |
$HOME/.cargo/bin/rustup toolchain install --profile minimal 1.43.1
+ - 1-43-1: |
cd alacritty
$HOME/.cargo/bin/cargo +1.43.1 test
+ - 1-43-1-wayland: |
+ cd alacritty/alacritty
+ $HOME/.cargo/bin/cargo +1.43.1 test --no-default-features --features=wayland
+ - 1-43-1-x11: |
+ cd alacritty/alacritty
+ $HOME/.cargo/bin/cargo +1.43.1 test --no-default-features --features=x11
- stable: |
cd alacritty
$HOME/.cargo/bin/cargo +stable test