amdgpud/.github/workflows/rust.yml

42 lines
1.3 KiB
YAML
Raw Normal View History

2021-07-03 16:02:08 +02:00
name: Rust
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
env:
CARGO_TERM_COLOR: always
jobs:
build:
2021-07-03 23:15:51 +02:00
strategy:
fail-fast: false
matrix:
2021-12-03 07:35:17 +01:00
os: [ ubuntu-18.04, ubuntu-20.04 ]
2021-07-03 23:15:51 +02:00
runs-on: ${{ matrix.os }}
2021-07-03 16:02:08 +02:00
steps:
2021-12-03 07:35:17 +01:00
- uses: actions/checkout@v2
- name: Add target
run: rustup target install x86_64-unknown-linux-musl
- name: Run clippy
run: cargo clippy -- -D warnings
- name: Run fmt check
run: cargo fmt -- --check
- name: Run tests
run: cargo test --verbose
- name: Install binary compressor
run: sudo apt-get update && sudo apt-get install upx-ucl
- name: Build
run: cargo build --release --verbose --target=x86_64-unknown-linux-musl && strip ./target/x86_64-unknown-linux-musl/release/amdfand && upx --best --lzma target/x86_64-unknown-linux-musl/release/amdfand
- name: Upload a Build Artifact
uses: actions/upload-artifact@v2.2.4
with:
# Artifact name
name: amdfand-${{ matrix.os }}
# A file, directory or wildcard pattern that describes what to upload
path: ./target/x86_64-unknown-linux-musl/release/amdfand
# The desired behavior if no files are found using the provided path.