tuigreet/.github/workflows/release.yml

85 lines
2.6 KiB
YAML
Raw Normal View History

name: Release build
on:
push:
tags:
- "[0-9]+.[0-9]+.[0-9]+"
jobs:
clippy:
runs-on: ubuntu-latest
steps:
2023-10-30 01:38:34 +03:00
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@stable
- uses: Swatinem/rust-cache@v2
- name: Lint
run: |
cargo clippy
cargo clippy --release
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@stable
2023-11-11 11:45:24 +03:00
- run: |
2024-05-13 19:15:16 +03:00
sudo apt update && sudo apt install -y libnss-wrapper scdoc
2023-10-30 01:38:34 +03:00
- uses: Swatinem/rust-cache@v2
- name: Test
2023-11-11 11:45:24 +03:00
env:
NSS_WRAPPER_PASSWD: contrib/fixtures/passwd
NSS_WRAPPER_GROUP: contrib/fixtures/group
2023-10-30 01:38:34 +03:00
run: |
cargo test
2023-11-11 11:45:24 +03:00
LD_PRELOAD=libnss_wrapper.so cargo test --features nsswrapper nsswrapper_
2024-05-13 19:15:16 +03:00
- name: Generate manpage
run: |
scdoc < contrib/man/tuigreet-1.scd > /dev/null
build:
strategy:
matrix:
arch:
2024-04-25 21:32:12 +03:00
- { name: "x86_64", os: "ubuntu-latest", target: "x86_64-unknown-linux-gnu", cross: false }
runs-on: ${{ matrix.arch.os }}
steps:
- name: Get the version
id: version
run: echo ::set-output name=VERSION::${GITHUB_REF/refs\/tags\//}
2023-10-30 01:38:34 +03:00
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@stable
- uses: Swatinem/rust-cache@v2
with:
2023-10-30 01:38:34 +03:00
shared-key: cargo-cache-${{ matrix.arch.target }}
- run: rm -rf .git/
- name: Build
2023-10-30 01:38:34 +03:00
run: |
cargo build --release --target=${{ matrix.arch.target }}
- name: Rename artifact
run: mv target/${{ matrix.arch.target }}/release/tuigreet target/${{ matrix.arch.target }}/release/tuigreet-${{ steps.version.outputs.VERSION }}-${{ matrix.arch.name }}
- name: Upload artifact
2024-04-25 21:32:12 +03:00
uses: actions/upload-artifact@v4
with:
name: tuigreet-${{ steps.version.outputs.VERSION }}-${{ matrix.arch.name }}
path: target/${{ matrix.arch.target }}/release/tuigreet-${{ steps.version.outputs.VERSION }}-${{ matrix.arch.name }}
release:
runs-on: ubuntu-latest
needs: build
steps:
- name: Get the version
id: version
run: echo ::set-output name=VERSION::${GITHUB_REF/refs\/tags\//}
- name: Download artifacts
2024-04-25 21:32:12 +03:00
uses: actions/download-artifact@v4
with:
path: target/out
2023-10-30 14:41:45 +03:00
- name: Create release
uses: ncipollo/release-action@v1
with:
2023-10-30 14:41:45 +03:00
token: ${{ secrets.GITHUB_TOKEN }}
name: ${{ steps.version.outputs.VERSION }}
prerelease: false
tag: ${{ github.ref }}
artifacts: target/out/*/*