-
-
Notifications
You must be signed in to change notification settings - Fork 0
60 lines (52 loc) · 1.45 KB
/
sustenet-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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
name: Sustenet (Rust)
on:
push:
branches: [master]
paths: [rust/**]
pull_request:
branches: [master]
paths: [rust/**]
env:
VERSION: 1.82.0
defaults:
run:
working-directory: rust
jobs:
test:
strategy:
matrix:
platform:
- os_name: FreeBSD-x86_64
os: ubuntu-latest
target: x86_64-unknown-freebsd
bin: sustenet
name: sustenet-FreeBSD-x86_64.tar.gz
cargo_command: cargo
- os_name: Linux-x86_64
os: ubuntu-latest
target: x86_64-unknown-linux-gnu
bin: sustenet
name: sustenet-Linux-x86_64-gnu.tar.gz
cargo_command: cargo
- os_name: Windows-x86_64
os: windows-latest
target: x86_64-pc-windows-msvc
bin: sustenet.exe
name: sustenet-Windows-x86_64.zip
cargo_command: cargo
- os_name: macOS-x86_64
os: macos-latest
target: x86_64-apple-darwin
bin: sustenet
name: sustenet-macOS-x86_64.tar.gz
cargo_command: cargo
runs-on: ${{matrix.platform.os}}
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Get rust toolchain
uses: dtolnay/rust-toolchain@stable
with:
toolchain: ${{env.VERSION}}
targets: ${{matrix.platform.target}}
- run: ${{matrix.platform.cargo_command}} test -- --nocapture