forked from nmstate/nmstate
-
Notifications
You must be signed in to change notification settings - Fork 0
64 lines (48 loc) · 1.48 KB
/
Copy pathrelease.yml
File metadata and controls
64 lines (48 loc) · 1.48 KB
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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
name: Release
on:
push:
tags: ["v[0-9]+.[0-9]+.[0-9]+*"]
jobs:
linux-x64:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install Rust Stable
run: rustup update
- name: Build release binrary
run: cd rust && cargo build --release
- uses: actions/upload-artifact@v4
with:
name: nmstatectl-linux-x64
path: rust/target/release/nmstatectl
retention-days: 30
macos-x64:
runs-on: macos-latest
steps:
- uses: actions/checkout@v4
- name: Install Rust Stable
run: rustup update && rustup target add x86_64-apple-darwin
- name: Build release
run: |
cd rust && cargo build --release --target=x86_64-apple-darwin \
--no-default-features --features gen_conf
- uses: actions/upload-artifact@v4
with:
name: nmstatectl-macos-x64
path: rust/target/x86_64-apple-darwin/release/nmstatectl
retention-days: 30
macos-aarch64:
runs-on: macos-latest
steps:
- uses: actions/checkout@v4
- name: Install Rust Stable
run: rustup update && rustup target add aarch64-apple-darwin
- name: Build release
run: |
cd rust && cargo build --release --target=aarch64-apple-darwin \
--no-default-features --features gen_conf
- uses: actions/upload-artifact@v4
with:
name: nmstatectl-macos-aarch64
path: rust/target/aarch64-apple-darwin/release/nmstatectl
retention-days: 30