-
Notifications
You must be signed in to change notification settings - Fork 19
38 lines (31 loc) · 917 Bytes
/
rust.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
name: Rust
on: [push, pull_request]
env:
CARGO_TERM_COLOR: always
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/cache@v3
with:
path: |
~/.cargo/registry
~/.cargo/git
target
key: ${{ runner.os }}-cargo-${{ hashFiles('**/Cargo.lock') }}
- name: Build
run: cargo build --verbose
- name: Run tests
run: cargo test --verbose
- name: Run binary for test purpose
shell: bash -xe {0}
run: |
cargo run --profile dev -- --profile dev
test -f target/generate-rpm/cargo-generate-rpm-*.rpm
rm -f target/generate-rpm/cargo-generate-rpm-*.rpm
cargo run --release -- generate-rpm
test -f target/generate-rpm/cargo-generate-rpm-*.rpm
rm -f target/generate-rpm/cargo-generate-rpm-*.rpm
- name: Package
run: cargo package