mirror of
https://github.com/alacritty/alacritty.git
synced 2024-11-18 13:55:23 -05:00
1645a70168
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.
40 lines
1.1 KiB
YAML
40 lines
1.1 KiB
YAML
image: freebsd/latest
|
|
|
|
packages:
|
|
- devel/cmake
|
|
- devel/pkgconf
|
|
- lang/python3
|
|
- print/freetype2
|
|
- x11-fonts/fontconfig
|
|
- x11-fonts/dejavu
|
|
- x11/libxcb
|
|
- x11/libxkbcommon
|
|
|
|
sources:
|
|
- https://github.com/alacritty/alacritty
|
|
|
|
environment:
|
|
PATH: /home/build/.cargo/bin:/bin:/usr/bin:/usr/local/bin
|
|
|
|
tasks:
|
|
- rustup: |
|
|
curl https://sh.rustup.rs -sSf | sh -s -- -y --default-toolchain stable --profile minimal
|
|
- test: |
|
|
cd alacritty
|
|
cargo test
|
|
- oldstable: |
|
|
cd alacritty
|
|
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
|
|
rustup component add clippy
|
|
cargo clippy --all-targets
|
|
- feature-wayland: |
|
|
cd alacritty/alacritty
|
|
RUSTFLAGS="-D warnings" cargo test --no-default-features --features=wayland
|
|
- feature-x11: |
|
|
cd alacritty/alacritty
|
|
RUSTFLAGS="-D warnings" cargo test --no-default-features --features=x11
|