-
Notifications
You must be signed in to change notification settings - Fork 4
50 lines (47 loc) · 1.17 KB
/
build.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
39
40
41
42
43
44
45
46
47
48
49
50
name: build
on:
pull_request:
branches:
- master
- main
push:
branches:
- master
- main
env:
CARGO_TERM_COLOR: always
jobs:
build:
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v2
- uses: actions/cache@v2
with:
path: |
~/.cargo/bin/
~/.cargo/registry/index/
~/.cargo/registry/cache/
~/.cargo/git/db/
target/
key: ${{ runner.os }}-cargo-${{ hashFiles('**/Cargo.lock') }}
- name: Install cargo plugins
run: cargo install cargo-rpm cargo-deb
continue-on-error: true
- name: Build
run: cargo build
- name: Build deb package
run: cargo deb
- name: Build rpm package
run: cargo rpm build
- uses: actions/upload-artifact@v4
with:
name: netbox2netshot-${{ github.sha }}
path: target/debug/netbox2netshot
- uses: actions/upload-artifact@v4
with:
name: netbox2netshot-${{ github.sha }}.rpm
path: target/release/rpmbuild/RPMS/x86_64/*.rpm
- uses: actions/upload-artifact@v4
with:
name: netbox2netshot-${{ github.sha }}.deb
path: target/debian/*.deb