From 721f789b5f98ab5c47e6e817c3c2228636ca0a1a Mon Sep 17 00:00:00 2001 From: Kirill Chibisov Date: Mon, 12 Oct 2020 12:22:36 +0300 Subject: 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. --- .builds/freebsd.yml | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) (limited to '.builds') 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 -- cgit v1.2.3-54-g00ecf