diff options
author | Kirill Chibisov <contact@kchibisov.com> | 2020-10-12 12:22:36 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-10-12 12:22:36 +0300 |
commit | 721f789b5f98ab5c47e6e817c3c2228636ca0a1a (patch) | |
tree | 31d9a149fbcf36c9a824856d1da103c06f67f16c /.builds | |
parent | 56e0f5bb05cab709f815ef9cce027b379ce964b8 (diff) | |
download | alacritty-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.yml | 8 |
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 |