forked from indygreg/PyOxidizer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Justfile
474 lines (376 loc) · 15.1 KB
/
Justfile
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
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
default:
cargo build
exe_suffix := if os() == "windows" { ".exe" } else { "" }
macosx_deployment_target := if os() == "macos" {
if arch() == "arm" {
"11.0"
} else {
"10.9"
}
} else {
""
}
actions-install-sccache-linux:
python3 scripts/secure_download.py \
https://github.com/mozilla/sccache/releases/download/v0.3.3/sccache-v0.3.3-x86_64-unknown-linux-musl.tar.gz \
427bd2151a1b01cd9b094d842e22c445b30f3c645f171a9a62ea55270f06bf23 \
sccache.tar.gz
tar -xvzf sccache.tar.gz
mv sccache-v0.3.3-x86_64-unknown-linux-musl/sccache /home/runner/.cargo/bin/sccache
rm -rf sccache*
chmod +x /home/runner/.cargo/bin/sccache
actions-install-sccache-macos:
python3 scripts/secure_download.py \
https://github.com/mozilla/sccache/releases/download/v0.3.3/sccache-v0.3.3-x86_64-apple-darwin.tar.gz \
e68aa0e2716e9cceff7912e09d8028df34cd63d8d60cae832a2d5f5c94da1828 \
sccache.tar.gz
tar -xvzf sccache.tar.gz
mv sccache-v0.3.3-x86_64-apple-darwin/sccache /Users/runner/.cargo/bin/sccache
rm -rf sccache*
chmod +x /Users/runner/.cargo/bin/sccache
actions-install-sccache-windows:
python3 scripts/secure_download.py \
https://github.com/mozilla/sccache/releases/download/v0.3.3/sccache-v0.3.3-x86_64-pc-windows-msvc.tar.gz \
b37b55b6e45737562450a98cd4e5c91e58540febdbbda5c575acf80314a2b3ea \
sccache.tar.gz
tar -xvzf sccache.tar.gz
mv sccache-v0.3.3-x86_64-pc-windows-msvc/sccache.exe C:/Users/runneradmin/.cargo/bin/sccache.exe
actions-bootstrap-rust-linux: actions-install-sccache-linux
sudo apt install -y --no-install-recommends libpcsclite-dev musl-tools
actions-bootstrap-rust-macos: actions-install-sccache-macos
actions-bootstrap-rust-windows: actions-install-sccache-windows
actions-macos-universal exe:
#!/usr/bin/env bash
set -eo pipefail
mkdir -p uploads
lipo {{exe}}-x86-64/{{exe}} {{exe}}-aarch64/{{exe}} -create -output uploads/{{exe}}
chmod +x uploads/{{exe}}
lipo uploads/{{exe}} -info
# There might be a COPYING file with licensing info. If so, preserve it.
if [ -e "{{exe}}-aarch64/COPYING" ]; then
cp -v {{exe}}-aarch64/COPYING uploads/
fi
actions-build-pyoxy-linux target_triple python_version:
mkdir -p pyoxy/build target
chmod 777 pyoxy/build target
docker run \
--rm \
-v $(pwd):/pyoxidizer \
-v /usr/local/bin/pyoxidizer:/usr/bin/pyoxidizer \
pyoxidizer:build \
/pyoxidizer/ci/build-pyoxy-linux.sh {{target_triple}} {{python_version}} build
mkdir upload
cp pyoxy/build/{{target_triple}}/release/pyoxy upload/
cp pyoxy/build/{{target_triple}}/release/resources/COPYING.txt upload/COPYING
# Build PyOxy binary on Linux (local dev mode).
pyoxy-build-linux target_triple python_version:
#!/usr/bin/env bash
set -eo pipefail
(cd ci && docker build -f linux-portable-binary.Dockerfile -t linux-portable-binary:latest .)
cargo build --bin pyoxidizer --target x86_64-unknown-linux-musl
rm -rf target/docker
mkdir -p target/docker
docker run \
--rm \
-it \
-v $(pwd):/pyoxidizer \
-v $(pwd)/target/x86_64-unknown-linux-musl/debug/pyoxidizer:/usr/bin/pyoxidizer \
linux-portable-binary:latest \
/pyoxidizer/ci/build-pyoxy-linux.sh {{target_triple}} {{python_version}} ../target/docker
pyoxy-build-linux-stage pyoxy_version triple python_version:
#!/usr/bin/env bash
set -eo pipefail
just pyoxy-build-linux {{triple}} {{python_version}}
DEST_DIR=dist/pyoxy-{{pyoxy_version}}-{{triple}}-python{{python_version}}
mkdir -p ${DEST_DIR}
cp target/docker/{{triple}}/release/pyoxy ${DEST_DIR}/
cp target/docker/{{triple}}/release/resources/COPYING.txt ${DEST_DIR}/COPYING
# Build all PyOxy binaries for Linux.
pyoxy-build-linux-all:
#!/usr/bin/env bash
set -eo pipefail
PYOXY_VERSION=$(cargo metadata --manifest-path pyoxy/Cargo.toml --no-deps | jq --raw-output '.packages[] | select(.name == "pyoxy") | .version')
just pyoxy-build-linux-stage ${PYOXY_VERSION} x86_64-unknown-linux-gnu 3.8
just pyoxy-build-linux-stage ${PYOXY_VERSION} x86_64-unknown-linux-gnu 3.9
just pyoxy-build-linux-stage ${PYOXY_VERSION} x86_64-unknown-linux-gnu 3.10
actions-build-pyoxy-macos triple python_version:
#!/usr/bin/env bash
set -euxo pipefail
export SDKROOT=/Applications/Xcode_14.2.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.1.sdk
export MACOSX_DEPLOYMENT_TARGET={{macosx_deployment_target}}
pyoxidizer build --release --target-triple {{triple}} --path pyoxy --var PYTHON_VERSION {{python_version}}
PYO3_CONFIG_FILE=$(pwd)/pyoxy/build/{{triple}}/release/resources/pyo3-build-config-file.txt cargo build --bin pyoxy --target {{triple}} --release
mkdir upload
cp target/{{triple}}/release/pyoxy upload/
cp pyoxy/build/{{triple}}/release/resources/COPYING.txt upload/COPYING
sccache --stop-server
# Trigger a workflow on a branch.
ci-run workflow branch="ci-test":
gh workflow run {{workflow}} --ref {{branch}}
# Trigger all workflows on a given branch.
ci-run-all branch="ci-test":
just ci-run cargo_deny.yml {{branch}}
just ci-run oxidized_importer.yml {{branch}}
just ci-run pyoxidizer.yml {{branch}}
just ci-run pyoxy.yml {{branch}}
just ci-run sphinx.yml {{branch}}
just ci-run workspace.yml {{branch}}
just ci-run workspace-python.yml {{branch}}
_remote-sign-exe ref workflow run_id artifact exe_name rcodesign_branch="main":
gh workflow run sign-apple-exe.yml \
--ref {{ref}} \
-f workflow={{workflow}} \
-f run_id={{run_id}} \
-f artifact={{artifact}} \
-f exe_name={{exe_name}} \
-f rcodesign_branch={{rcodesign_branch}}
# Trigger remote code signing workflow for pyoxy executable.
remote-sign-pyoxy ref run_id rcodesign_branch="main": (_remote-sign-exe ref "rcodesign.yml" run_id "exe-pyoxy-macos-universal" "pyoxy" rcodesign_branch)
# Obtain built executables from GitHub Actions.
assemble-exe-artifacts exe commit dest:
#!/usr/bin/env bash
set -exo pipefail
RUN_ID=$(gh run list \
--workflow {{exe}}.yml \
--json databaseId,headSha | \
jq --raw-output '.[] | select(.headSha=="{{commit}}") | .databaseId' | head -n 1)
if [ -z "${RUN_ID}" ]; then
echo "could not find GitHub Actions run with artifacts"
exit 1
fi
echo "GitHub run ID: ${RUN_ID}"
gh run download --dir {{dest}} ${RUN_ID}
_codesign-exe in_path:
rcodesign sign \
--remote-signer \
--remote-public-key-pem-file ci/developer-id-application.pem \
--code-signature-flags runtime \
{{in_path}}
_codesign in_path out_path:
rcodesign sign \
--remote-signer \
--remote-public-key-pem-file ci/developer-id-application.pem \
{{in_path}} {{out_path}}
# Notarize and staple a path.
notarize path:
rcodesign notarize \
--api-issuer 254e4e96-2b8b-43c1-b385-286bdad51dba \
--api-key 8RXL6MN9WV \
--staple \
{{path}}
_tar_directory source_directory dir_name dest_dir:
tar \
--sort=name \
--owner=root:0 \
--group=root:0 \
--mtime="2022-01-01 00:00:00" \
-C {{source_directory}} \
-cvzf {{dest_dir}}/{{dir_name}}.tar.gz \
{{dir_name}}/
_zip_directory source_directory dir_name dest_dir:
#!/usr/bin/env bash
set -exo pipefail
here=$(pwd)
cd {{source_directory}}
zip -r ${here}/{{dest_dir}}/{{dir_name}}.zip {{dir_name}}
_release_universal_binary project tag exe:
mkdir -p dist/{{project}}-stage/{{project}}-{{tag}}-macos-universal
llvm-lipo-14 \
-create \
-output dist/{{project}}-stage/{{project}}-{{tag}}-macos-universal/{{exe}} \
dist/{{project}}-stage/{{project}}-{{tag}}-aarch64-apple-darwin/{{exe}} \
dist/{{project}}-stage/{{project}}-{{tag}}-x86_64-apple-darwin/{{exe}}
cp dist/{{project}}-stage/{{project}}-{{tag}}-aarch64-apple-darwin/COPYING \
dist/{{project}}-stage/{{project}}-{{tag}}-macos-universal/COPYING
_create_shasums dir:
#!/usr/bin/env bash
set -exo pipefail
(cd {{dir}} && shasum -a 256 *.* > SHA256SUMS)
for p in {{dir}}/*.*; do
if [[ "${p}" != *"SHA256SUMS" ]]; then
shasum -a 256 $p | awk '{print $1}' > ${p}.sha256
fi
done
_upload_release name title_name commit tag:
git tag -f {{name}}/{{tag}} {{commit}}
git push -f origin refs/tags/{{name}}/{{tag}}:refs/tags/{{name}}/{{tag}}
gh release create \
--prerelease \
--target {{commit}} \
--title '{{title_name}} {{tag}}' \
--discussion-category general \
{{name}}/{{tag}}
gh release upload --clobber {{name}}/{{tag}} dist/{{name}}/*
_release name title_name:
#!/usr/bin/env bash
set -exo pipefail
COMMIT=$(git rev-parse HEAD)
TAG=$(cargo metadata \
--manifest-path {{name}}/Cargo.toml \
--format-version 1 \
--no-deps | \
jq --raw-output '.packages[] | select(.name=="{{name}}") | .version')
just {{name}}-release-prepare ${COMMIT} ${TAG}
just {{name}}-release-upload ${COMMIT} ${TAG}
# Prepare PyOxy release artifacts.
pyoxy-release-prepare commit tag:
#!/usr/bin/env bash
set -exo pipefail
rm -rf dist/pyoxy*
just assemble-exe-artifacts pyoxy {{commit}} dist/pyoxy-artifacts
for py in 3.8 3.9 3.10; do
for triple in aarch64-apple-darwin x86_64-apple-darwin x86_64-unknown-linux-gnu macos-universal; do
release_name=pyoxy-{{tag}}-${triple}-cpython${py}
source=dist/pyoxy-artifacts/exe-pyoxy-${triple}-${py}
dest=dist/pyoxy-stage/${release_name}
mkdir -p ${dest}
cp -a ${source}/pyoxy ${dest}/pyoxy
# GitHub Actions zip files don't preserve executable bit.
chmod +x ${dest}/pyoxy
cp -a ${source}/COPYING ${dest}/COPYING
case ${triple} in
*apple* | macos-universal)
just _codesign-exe ${dest}/pyoxy
;;
*)
;;
esac
mkdir -p dist/pyoxy
just _tar_directory \
dist/pyoxy-stage \
${release_name} \
dist/pyoxy
done
done
just _create_shasums dist/pyoxy
# Upload PyOxy release artifacts to a new GitHub release.
pyoxy-release-upload commit tag:
just _upload_release pyoxy PyOxy {{commit}} {{tag}}
# Perform a PyOxy release end-to-end.
pyoxy-release:
just _release pyoxy PyOxy
oxidized_importer-release-prepare commit tag:
#!/usr/bin/env bash
set -exo pipefail
rm -rf dist/oxidized_importer*
just assemble-exe-artifacts oxidized_importer {{commit}} dist/oxidized_importer-artifacts
mkdir dist/oxidized_importer
cp dist/oxidized_importer-artifacts/wheels/*.whl dist/oxidized_importer
just _create_shasums dist/oxidized_importer
oxidized_importer-release-upload commit tag:
just _upload_release oxidized_importer 'Oxidized Importer Python Extension' {{commit}} {{tag}}
twine upload dist/oxidized_importer/*.whl
oxidized_importer-release commit tag:
just oxidized_importer-release-prepare {{commit}} {{tag}}
just oxidized_importer-release-upload {{commit}} {{tag}}
# Create a .dmg for PyOxidizer
pyoxidizer-create-dmg:
#!/usr/bin/env bash
set -exo pipefail
# Clear out old state.
rm -rf build dmg_root PyOxidizer.dmg dist/pyoxidizer*
if [ -d /Volumes/PyOxidizer ]; then
DEV_NAME=$(hdiutil info | egrep --color=never '^/dev/' | sed 1q | awk '{print $1}')
hdiutil detach "${DEV_NAME}"
fi
if [[ $(uname -m) == 'arm64' ]]; then
PYOXIDIZER=target/aarch64-apple-darwin/release/pyoxidizer
else
PYOXIDIZER=target/x86_64-apple-darwin/release/pyoxidizer
fi
$PYOXIDIZER build --release macos_app_bundle
just _codesign build/*/release/macos_app_bundle/PyOxidizer.app dist/pyoxidizer-stage/PyOxidizer.app
hdiutil create \
-srcfolder dist/pyoxidizer-stage \
-volname PyOxidizer \
-fs HFS+ \
-fsargs "-c c=64,a=16,e=16" \
-format UDRW \
PyOxidizer
# Mount it.
DEV_NAME=$(hdiutil attach -readwrite -noverify -noautoopen PyOxidizer.dmg | egrep --color=never '^/dev/' | sed 1q | awk '{print $1}')
# Create a symlink to /Applications for drag and drop.
ln -s /Applications /Volumes/PyOxidizer/Applications
# Run AppleScript to create the .DS_Store.
/usr/bin/osascript scripts/dmg.applescript PyOxidizer
# --openfolder not supported on ARM.
if [[ $(uname -m) == "arm64" ]]; then
bless --folder /Volumes/PyOxidizer
else
bless --folder /Volumes/PyOxidizer --openfolder /Volumes/PyOxidizer
fi
# Unmount.
hdiutil detach "${DEV_NAME}"
# Compress.
hdiutil convert PyOxidizer.dmg -format UDZO -imagekey zlib-level=9 -ov -o PyOxidizer.dmg
just _codesign PyOxidizer.dmg PyOxidizer.dmg
just notarize PyOxidizer.dmg
# Prepare PyOxidizer release artifacts.
pyoxidizer-release-prepare commit tag:
#!/usr/bin/env bash
set -exo pipefail
rm -rf dist/pyoxidizer*
just assemble-exe-artifacts pyoxidizer {{commit}} dist/pyoxidizer-artifacts
mkdir dist/pyoxidizer dist/pyoxidizer-stage
# Windows installers are easy.
cp -av dist/pyoxidizer-artifacts/pyoxidizer-windows_installers/*.{exe,msi} dist/pyoxidizer/
# Assemble plain executable releases.
for triple in aarch64-apple-darwin aarch64-unknown-linux-musl i686-pc-windows-msvc x86_64-apple-darwin x86_64-pc-windows-msvc x86_64-unknown-linux-musl; do
release_name=pyoxidizer-{{tag}}-${triple}
source=dist/pyoxidizer-artifacts/exe-pyoxidizer-${triple}
dest=dist/pyoxidizer-stage/${release_name}
exe=pyoxidizer
sign_command=
archive_action=_tar_directory
case ${triple} in
*apple*)
sign_command="just _codesign-exe ${dest}/${exe}"
;;
*windows*)
exe=pyoxidizer.exe
archive_action=_zip_directory
;;
*)
;;
esac
mkdir -p ${dest}
cp -a ${source}/${exe} ${dest}/${exe}
chmod +x ${dest}/${exe}
if [ -n "${sign_command}" ]; then
${sign_command}
fi
cargo run --bin pyoxidizer -- rust-project-licensing \
--system-rust \
--target-triple ${triple} \
--all-features \
--unified-license \
pyoxidizer > ${dest}/COPYING
just ${archive_action} dist/pyoxidizer-stage ${release_name} dist/pyoxidizer
# Wheels are built using the (signed) executables in the archives.
mkdir -p target/${triple}/release
cp ${dest}/${exe} target/${triple}/release/
cargo run --bin pyoxidizer -- build --release wheel_${triple}
cp build/*/release/wheel_${triple}/*.whl dist/pyoxidizer/
done
# Create universal binary from signed single arch Mach-O binaries.
just _release_universal_binary pyoxidizer {{tag}} pyoxidizer
just _tar_directory dist/pyoxidizer-stage pyoxidizer-{{tag}}-macos-universal dist/pyoxidizer
# The DMG is created using the signed binaries.
for triple in aarch64-apple-darwin x86_64-apple-darwin; do
ssh macmini mkdir -p /Users/gps/src/PyOxidizer/target/${triple}/release
scp dist/pyoxidizer-stage/pyoxidizer-{{tag}}-${triple}/pyoxidizer macmini:~/src/PyOxidizer/target/${triple}/release/
done
ssh macmini just -d /Users/gps/src/PyOxidizer -f /Users/gps/src/PyOxidizer/Justfile pyoxidizer-create-dmg
scp macmini:~/src/PyOxidizer/PyOxidizer.dmg dist/pyoxidizer/PyOxidizer-{{tag}}.dmg
just _create_shasums dist/pyoxidizer
# Upload PyOxidizer release artifacts.
pyoxidizer-release-upload commit tag:
just _upload_release pyoxidizer PyOxidizer {{commit}} {{tag}}
twine upload dist/pyoxidizer/*.whl
# Perform release automation for PyOxidizer.
pyoxidizer-release:
just _release pyoxidizer 'PyOxidizer'
# Perform Rust crate releases.
release-rust:
cargo release release --exclude pyoxidizer --execute
cargo release release -p pyoxidizer --execute