-
Notifications
You must be signed in to change notification settings - Fork 0
143 lines (138 loc) · 4.65 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
name: Rust Build and Test
### https://github.com/harmless-tech/rust-github-actions
on:
push:
branches: [ main ]
paths: [ .github/workflows/build.yml, keys/**, src/**, test/**, build.rs, Cargo.lock, Cargo.toml, Cross.toml ]
pull_request:
branches: [ main ]
paths: [ .github/workflows/build.yml, keys/**, src/**, test/**, build.rs, Cargo.lock, Cargo.toml, Cross.toml ]
workflow_dispatch:
env:
bin-name: dvs
feature-set: ''
CARGO_TERM_COLOR: always
jobs:
cross:
strategy:
fail-fast: false
matrix:
include:
- target: x86_64-unknown-linux-gnu
can-test: true
- target: x86_64-unknown-linux-musl
can-test: true
- target: aarch64-unknown-linux-gnu
can-test: true
- target: aarch64-unknown-linux-musl
can-test: true
- target: x86_64-unknown-freebsd
can-test: false
- target: x86_64-unknown-netbsd
can-test: false
- target: x86_64-unknown-illumos
can-test: false
- target: x86_64-sun-solaris
can-test: false
- target: riscv64gc-unknown-linux-gnu
can-test: true
- target: powerpc64-unknown-linux-gnu
can-test: true
- target: powerpc64le-unknown-linux-gnu
can-test: true
- target: s390x-unknown-linux-gnu
can-test: true
- target: armv7-unknown-linux-gnueabihf
can-test: true
- target: armv7-unknown-linux-musleabihf
can-test: true
- target: x86_64-pc-windows-gnu
can-test: true
ending: .exe
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Update Rust and add target
run: |
rustup update
rustc --version
rustup target add ${{ matrix.target }}
- uses: cargo-prebuilt/cargo-prebuilt-action@v3
with:
pkgs: cross
- uses: Swatinem/rust-cache@v2
- name: Run tests
if: ${{ matrix.can-test }}
run: cross test --verbose --workspace --locked --target ${{ matrix.target }} ${{ env.feature-set }}
- name: Build
run: cross build --verbose --workspace --locked --target ${{ matrix.target }} ${{ env.feature-set }}
- name: Artifact
uses: actions/upload-artifact@v3
with:
name: target-${{ matrix.target }}
path: |
target/${{ matrix.target }}/debug/${{ env.bin-name }}${{ matrix.ending }}
apple-darwin:
strategy:
fail-fast: false
matrix:
include:
- target: x86_64-apple-darwin
can-test: true
- target: aarch64-apple-darwin
can-test: false
runs-on: macos-latest
steps:
- uses: actions/checkout@v4
- name: Update Rust and add target
run: |
rustup update
rustc --version
rustup target add ${{ matrix.target }}
- uses: cargo-prebuilt/cargo-prebuilt-action@v3
with:
pkgs: cargo-auditable
- uses: Swatinem/rust-cache@v2
- name: Run tests
if: ${{ matrix.can-test }}
run: cargo test --verbose --workspace --locked --target ${{ matrix.target }} ${{ env.feature-set }}
- name: Build
run: cargo auditable build --verbose --workspace --locked --target ${{ matrix.target }} ${{ env.feature-set }}
- name: Artifact
uses: actions/upload-artifact@v3
with:
name: target-${{ matrix.target }}
path: |
target/${{ matrix.target }}/debug/${{ env.bin-name }}
pc-windows-msvc:
strategy:
fail-fast: false
matrix:
include:
- target: x86_64-pc-windows-msvc
can-test: true
- target: aarch64-pc-windows-msvc
can-test: false
runs-on: windows-latest
steps:
- uses: actions/checkout@v4
- name: Update Rust and add target
run: |
rustup update
rustc --version
rustup target add ${{ matrix.target }}
- uses: cargo-prebuilt/cargo-prebuilt-action@v3
with:
pkgs: cargo-auditable
- uses: Swatinem/rust-cache@v2
- name: Run tests
if: ${{ matrix.can-test }}
run: cargo test --verbose --workspace --locked --target ${{ matrix.target }} ${{ env.feature-set }}
- name: Build
run: cargo auditable build --verbose --workspace --locked --target ${{ matrix.target }} ${{ env.feature-set }}
- name: Artifact
uses: actions/upload-artifact@v3
with:
name: target-${{ matrix.target }}
path: |
target/${{ matrix.target }}/debug/${{ env.bin-name }}.exe