-
Notifications
You must be signed in to change notification settings - Fork 710
284 lines (243 loc) · 7.33 KB
/
release.yaml
File metadata and controls
284 lines (243 loc) · 7.33 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
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
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
name: Release
on:
push:
tags:
- '*'
defaults:
run:
shell: bash
env:
RUSTFLAGS: --deny warnings
jobs:
prerelease:
runs-on: ubuntu-latest
outputs:
value: ${{ steps.prerelease.outputs.value }}
steps:
- name: Prerelease Check
id: prerelease
run: |
if [[ ${{ github.ref_name }} =~ ^[0-9]+[.][0-9]+[.][0-9]+$ ]]; then
echo value=false >> $GITHUB_OUTPUT
else
echo value=true >> $GITHUB_OUTPUT
fi
package:
strategy:
matrix:
target:
- aarch64-apple-darwin
- aarch64-pc-windows-msvc
- aarch64-unknown-linux-musl
- arm-unknown-linux-musleabihf
- armv7-unknown-linux-musleabihf
- loongarch64-unknown-linux-musl
- riscv64gc-unknown-linux-musl
- x86_64-apple-darwin
- x86_64-pc-windows-msvc
- x86_64-unknown-linux-musl
include:
- target: aarch64-apple-darwin
os: macos-latest
target_rustflags: ''
- target: aarch64-pc-windows-msvc
os: windows-latest
target_rustflags: ''
- target: aarch64-unknown-linux-musl
os: ubuntu-latest
target_rustflags: '--codegen linker=aarch64-linux-gnu-gcc'
- target: arm-unknown-linux-musleabihf
os: ubuntu-latest
target_rustflags: '--codegen linker=arm-linux-gnueabihf-gcc'
- target: armv7-unknown-linux-musleabihf
os: ubuntu-latest
target_rustflags: '--codegen linker=arm-linux-gnueabihf-gcc'
- target: loongarch64-unknown-linux-musl
os: ubuntu-latest
target_rustflags: '--codegen linker=loongarch64-linux-gnu-gcc-14'
- target: riscv64gc-unknown-linux-musl
os: ubuntu-latest
target_rustflags: '--codegen linker=riscv64-linux-gnu-gcc'
- target: x86_64-apple-darwin
os: macos-latest
target_rustflags: ''
- target: x86_64-pc-windows-msvc
os: windows-latest
- target: x86_64-unknown-linux-musl
os: ubuntu-latest
target_rustflags: ''
runs-on: ${{matrix.os}}
needs:
- prerelease
steps:
- uses: actions/checkout@v6
- name: Install Target Dependencies
run: |
case ${{ matrix.target }} in
aarch64-pc-windows-msvc)
rustup target add aarch64-pc-windows-msvc
;;
aarch64-unknown-linux-musl)
sudo apt-get update
sudo apt-get install gcc-aarch64-linux-gnu libc6-dev-i386
;;
arm-unknown-linux-musleabihf|armv7-unknown-linux-musleabihf)
sudo apt-get update
sudo apt-get install gcc-arm-linux-gnueabihf
;;
loongarch64-unknown-linux-musl)
sudo apt-get update
sudo apt-get install gcc-14-loongarch64-linux-gnu
;;
riscv64gc-unknown-linux-musl)
sudo apt-get update
sudo apt-get install gcc-riscv64-linux-gnu
;;
esac
- name: Generate Manpage
run: |
set -euxo pipefail
cargo build
mkdir -p man
./target/debug/just --man > man/just.1
- name: Package
id: package
env:
TARGET: ${{ matrix.target }}
REF: ${{ github.ref }}
OS: ${{ matrix.os }}
TARGET_RUSTFLAGS: ${{ matrix.target_rustflags }}
run: ./bin/package
shell: bash
- name: Publish Archive
uses: softprops/action-gh-release@v2.5.0
if: ${{ startsWith(github.ref, 'refs/tags/') }}
with:
draft: false
files: ${{ steps.package.outputs.archive }}
prerelease: ${{ needs.prerelease.outputs.value }}
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- name: Publish Changelog
uses: softprops/action-gh-release@v2.5.0
if: >-
${{
startsWith(github.ref, 'refs/tags/')
&& matrix.target == 'x86_64-unknown-linux-musl'
}}
with:
draft: false
files: CHANGELOG.md
prerelease: ${{ needs.prerelease.outputs.value }}
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- name: Upload Artifacts
if: >-
${{
matrix.target == 'aarch64-unknown-linux-musl'
|| matrix.target == 'x86_64-unknown-linux-musl'
}}
uses: actions/upload-artifact@v7
with:
name: ${{ matrix.target }}
path: ${{ steps.package.outputs.archive }}
checksum:
runs-on: ubuntu-latest
needs:
- package
- prerelease
steps:
- name: Download Release Archives
env:
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: >-
gh release download
--repo casey/just
--pattern '*'
--dir release
${{ github.ref_name }}
- name: Create Checksums
run: |
cd release
shasum -a 256 * > ../SHA256SUMS
- name: Publish Checksums
uses: softprops/action-gh-release@v2.5.0
with:
draft: false
files: SHA256SUMS
prerelease: ${{ needs.prerelease.outputs.value }}
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
docker:
runs-on: ubuntu-latest
needs:
- package
- prerelease
permissions:
contents: read
packages: write
steps:
- uses: actions/checkout@v6
- name: Log in to GitHub Container Registry
uses: docker/login-action@v4
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v4
- name: Download x86_64 Artifact
uses: actions/download-artifact@v8
with:
name: x86_64-unknown-linux-musl
- name: Download aarch64 Artifact
uses: actions/download-artifact@v8
with:
name: aarch64-unknown-linux-musl
- name: Extract Binaries
run: |
mkdir -p amd64 arm64
tar xzf just-${{ github.ref_name }}-x86_64-unknown-linux-musl.tar.gz --directory amd64 just
tar xzf just-${{ github.ref_name }}-aarch64-unknown-linux-musl.tar.gz --directory arm64 just
- name: Determine Tags
id: tags
run: |
VERSION=${{ github.ref_name }}
TAGS=ghcr.io/casey/just:${VERSION}
if [[ ${{ needs.prerelease.outputs.value }} == false ]]; then
TAGS=${TAGS},ghcr.io/casey/just:latest
fi
echo tags=${TAGS} >> $GITHUB_OUTPUT
- name: Build and Push
uses: docker/build-push-action@v7
with:
context: .
file: etc/Dockerfile
platforms: linux/amd64,linux/arm64
push: true
tags: ${{ steps.tags.outputs.tags }}
pages:
runs-on: ubuntu-latest
needs:
- prerelease
permissions:
contents: write
steps:
- uses: actions/checkout@v6
- uses: Swatinem/rust-cache@v2
- name: Install `mdbook`
run: cargo install --locked mdbook@0.4.52
- name: Install `mdbook-linkcheck`
run: cargo install --locked mdbook-linkcheck@0.7.7
- name: Build book
run: |
cargo run --package generate-book
mdbook build book/en
mdbook build book/zh
- name: Deploy Pages
uses: peaceiris/actions-gh-pages@v4
if: ${{ needs.prerelease.outputs.value == 'false' }}
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_branch: gh-pages
publish_dir: www