-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdist-workspace.toml
More file actions
48 lines (44 loc) · 1.47 KB
/
dist-workspace.toml
File metadata and controls
48 lines (44 loc) · 1.47 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
[workspace]
members = ["cargo:."]
# Config for 'dist'
[dist]
# The preferred dist version to use in CI (Cargo.toml SemVer syntax)
cargo-dist-version = "0.29.0"
# CI backends to support
ci = "github"
# Whether to enable GitHub Attestations
github-attestations = true
# Set up code to run before building our artifacts.
github-build-setup = "release-prebuild.yml.stub"
# The installers to generate for each app
installers = ["shell", "homebrew"]
# Target platforms to build apps for (Rust target-triple syntax)
targets = [
"aarch64-apple-darwin",
"aarch64-unknown-linux-gnu",
"x86_64-apple-darwin",
"x86_64-unknown-linux-gnu",
"x86_64-unknown-linux-musl",
]
# Path that installers should place binaries in
install-path = "CARGO_HOME"
# Whether to install an updater program
install-updater = true
# A GitHub repo to push Homebrew formulas to
tap = "wack/homebrew-tap"
# Publish jobs to run in CI
publish-jobs = ["homebrew"]
# Override the default runner image. Ubuntu-20.04 builds
# with too old of a C compiler, and breaks some cryptography
# packages due to open bugs.
[dist.github-custom-runners]
x86_64-apple-darwin = "macos-latest"
aarch64-apple-darwin = "macos-latest"
x86_64-unknown-linux-gnu = "ubuntu-22.04"
aarch64-unknown-linux-gnu = "ubuntu-22.04-arm"
global = "ubuntu-22.04"
# Also failing, but maybe unrelated?
# x86_64-pc-windows-msvc = "ubuntu-22.04"
# aarch64-apple-darwin = "ubuntu-22.04"
# aarch64-pc-windows-msvc = "ubuntu-22.04"
# x86_64-apple-darwin = "ubuntu-22.04"