From 34b5dbacd28cd1abaedf1d81cc0ebe57aa44a086 Mon Sep 17 00:00:00 2001 From: Kirill Chibisov Date: Thu, 7 Sep 2023 15:23:08 +0400 Subject: Test man-pages compilation on the CI --- .builds/linux.yml | 13 ++++++++++--- 1 file changed, 10 insertions(+), 3 deletions(-) (limited to '.builds/linux.yml') diff --git a/.builds/linux.yml b/.builds/linux.yml index d932d55f..aaa943ac 100644 --- a/.builds/linux.yml +++ b/.builds/linux.yml @@ -8,6 +8,7 @@ packages: - fontconfig - libxcb - libxkbcommon + - scdoc sources: - https://github.com/alacritty/alacritty @@ -18,13 +19,19 @@ environment: tasks: - rustup: | curl https://sh.rustup.rs -sSf | sh -s -- -y --default-toolchain stable --profile minimal - - test: | - cd alacritty - cargo test - rustfmt: | cd alacritty rustup toolchain install nightly -c rustfmt cargo +nightly fmt -- --check + - man-pages: | + cd alacritty + cat extra/man/alacritty.1.scd | scdoc > /dev/null + cat extra/man/alacritty-msg.1.scd | scdoc > /dev/null + cat extra/man/alacritty.5.scd | scdoc > /dev/null + cat extra/man/alacritty-bindings.5.scd | scdoc > /dev/null + - test: | + cd alacritty + cargo test - oldstable: | cd alacritty rustup toolchain install --profile minimal 1.65.0 -- cgit v1.2.3-54-g00ecf