nix: migrate to crane for incremental build; pin rust toolchain #28
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Pull request build | |
| on: | |
| pull_request: | |
| branches: | |
| - master | |
| jobs: | |
| clippy: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: dtolnay/rust-toolchain@stable | |
| - uses: Swatinem/rust-cache@v2 | |
| - name: Lint | |
| run: | | |
| cargo clippy -- -D warnings | |
| cargo clippy --release -- -D warnings | |
| test: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: dtolnay/rust-toolchain@stable | |
| - run: | | |
| sudo apt update && sudo apt install -y libnss-wrapper scdoc | |
| - uses: Swatinem/rust-cache@v2 | |
| - name: Test | |
| env: | |
| NSS_WRAPPER_PASSWD: contrib/fixtures/passwd | |
| NSS_WRAPPER_GROUP: contrib/fixtures/group | |
| run: | | |
| cargo test | |
| LD_PRELOAD=libnss_wrapper.so cargo test --features nsswrapper nsswrapper_ | |
| - name: Generate manpage | |
| run: | | |
| scdoc < contrib/man/tuigreet-1.scd > /dev/null | |
| build: | |
| strategy: | |
| matrix: | |
| arch: | |
| - { name: "x86_64", os: "ubuntu-latest", target: "x86_64-unknown-linux-gnu", cross: false } | |
| runs-on: ${{ matrix.arch.os }} | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: dtolnay/rust-toolchain@stable | |
| - uses: Swatinem/rust-cache@v2 | |
| with: | |
| shared-key: cargo-cache-${{ matrix.arch.target }} | |
| - name: Build | |
| run: | | |
| cargo build --release --target=${{ matrix.arch.target }} |