-
Notifications
You must be signed in to change notification settings - Fork 0
219 lines (204 loc) · 6.56 KB
/
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
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
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
name: Rust
on:
pull_request:
push:
branches:
- main
concurrency:
group: ci-${{ github.head_ref }}
cancel-in-progress: true
env:
RUST_VERSION: "1.78"
jobs:
fmt:
runs-on: ubuntu-latest
steps:
- uses: hecrj/setup-rust-action@v1
with:
rust-version: ${{env.RUST_VERSION}}
- uses: Swatinem/rust-cache@v2
- uses: actions/checkout@v3
- name: cargo fmt
run: cargo fmt -- --check
clippy:
runs-on: ubuntu-latest
steps:
- uses: hecrj/setup-rust-action@v1
with:
rust-version: ${{env.RUST_VERSION}}
- uses: Swatinem/rust-cache@v2
- uses: actions/checkout@v3
- name: cargo clippy
run: cargo clippy -- -D warnings
unit_tests:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, macOS-latest]
steps:
- uses: hecrj/setup-rust-action@v1
with:
rust-version: ${{env.RUST_VERSION}}
- uses: Swatinem/rust-cache@v2
- uses: actions/checkout@v3
- name: Run tests
run: cargo test
# build_windows_release:
# runs-on: windows-latest
# name: "Release build for Windows"
# steps:
# - uses: hecrj/setup-rust-action@v1
# with:
# rust-version: ${{env.RUST_VERSION}}
# - uses: Swatinem/rust-cache@v2
# - uses: actions/checkout@v3
# - name: Build release binary
# run: cargo build --release
# env:
# RUSTFLAGS: "-C target-feature=+crt-static"
# - uses: actions/upload-artifact@v3
# with:
# name: pactup-windows
# path: target/release/pactup.exe
build_macos_release:
runs-on: macos-latest
name: "Release build for macOS"
steps:
- uses: hecrj/setup-rust-action@v1
with:
rust-version: ${{env.RUST_VERSION}}
- uses: Swatinem/rust-cache@v2
- uses: actions/checkout@v3
- name: Build release binary
run: cargo build --release
env:
LZMA_API_STATIC: "true"
- name: Strip binary from debug symbols
run: strip target/release/pactup
- name: List dynamically linked libraries
run: otool -L target/release/pactup
- uses: actions/upload-artifact@v3
with:
name: pactup-macos
path: target/release/pactup
build_static_linux_binary:
name: "Build static Linux binary"
runs-on: ubuntu-latest
steps:
- uses: hecrj/setup-rust-action@v1
with:
rust-version: ${{env.RUST_VERSION}}
targets: x86_64-unknown-linux-musl
- uses: Swatinem/rust-cache@v2
with:
key: static-linux-binary
- name: Install musl tools
run: |
sudo apt-get update
sudo apt-get install -y --no-install-recommends musl-tools
- uses: actions/checkout@v3
- name: Build release binary
run: cargo build --release --target x86_64-unknown-linux-musl
env:
RUSTFLAGS: "-C target-feature=+crt-static"
- name: Strip binary from debug symbols
run: strip target/x86_64-unknown-linux-musl/release/pactup
- uses: actions/upload-artifact@v3
with:
name: pactup-linux
path: target/x86_64-unknown-linux-musl/release/pactup
build_static_arm_binary:
name: "Build ARM binary"
strategy:
matrix:
include:
- arch: arm64
rust_target: aarch64-unknown-linux-musl
docker_image: arm64v8/ubuntu
docker_platform: aarch64
- arch: arm32
rust_target: armv7-unknown-linux-gnueabihf
docker_image: arm32v7/ubuntu
docker_platform: armv7
runs-on: ubuntu-latest
env:
RUST_TARGET: ${{ matrix.rust_target }}
steps:
- name: Set up QEMU
id: qemu
uses: docker/setup-qemu-action@v2
- uses: hecrj/setup-rust-action@v1
with:
rust-version: ${{env.RUST_VERSION}}
- uses: Swatinem/rust-cache@v2
with:
key: arm-binary-${{ matrix.arch }}
- name: "Download `cross` crate"
run: cargo install cross
- uses: actions/checkout@v3
- name: "Build release"
run: cross build --target $RUST_TARGET --release
- uses: uraimo/[email protected]
name: Sanity test
with:
arch: ${{matrix.docker_platform}}
distro: ubuntu18.04
# Not required, but speeds up builds by storing container images in
# a GitHub package registry.
githubToken: ${{ github.token }}
env: |
RUST_LOG: pactup=debug
dockerRunArgs: |
--volume "${PWD}/target/${{matrix.rust_target}}/release:/artifacts"
# Set an output parameter `uname` for use in subsequent steps
run: |
echo "Hello from $(uname -a)"
/artifacts/pactup --version
echo "pactup install 4.11"
/artifacts/pactup install 4.11
echo "pactup exec --using=4.11 -- pact --version"
/artifacts/pactup exec --using=4.11 -- pact --version
- uses: actions/upload-artifact@v3
with:
name: pactup-${{ matrix.arch }}
path: target/${{ env.RUST_TARGET }}/release/pactup
ensure_commands_markdown_is_up_to_date:
runs-on: ubuntu-latest
name: Ensure command docs are up-to-date
needs: [build_static_linux_binary]
steps:
- name: install necessary shells
run: sudo apt-get update && sudo apt-get install -y fish zsh bash
- uses: actions/checkout@v3
- uses: actions/download-artifact@v3
with:
name: pactup-linux
path: target/release
- name: mark binary as executable
run: chmod +x target/release/pactup
- name: install pactup as binary
run: |
sudo install target/release/pactup /bin
pactup --version
- uses: pnpm/[email protected]
with:
run_install: false
- uses: actions/setup-node@v3
with:
node-version: 22.x
cache: "pnpm"
- name: Get pnpm store directory
id: pnpm-cache
run: |
echo "::set-output name=pnpm_cache_dir::$(pnpm store path)"
- uses: actions/cache@v3
name: Setup pnpm cache
with:
path: ${{ steps.pnpm-cache.outputs.pnpm_cache_dir }}
key: ${{ runner.os }}-pnpm-store-${{ hashFiles('**/pnpm-lock.yaml') }}
restore-keys: |
${{ runner.os }}-pnpm-store-
- run: pnpm install
- name: Generate command markdown
run: |
pnpm run pactup-command-docs --check --binary-path=$(which pactup)