-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathdist-workspace.toml
More file actions
28 lines (27 loc) · 1.19 KB
/
dist-workspace.toml
File metadata and controls
28 lines (27 loc) · 1.19 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
[workspace]
members = ["cargo:."]
# Config for 'dist'
[dist]
# Skip checking whether the specified configuration files are up to date
allow-dirty = ["ci", "msi"]
# CI backends to support
ci = "github"
# Target platforms to build apps for (Rust target-triple syntax)
targets = ["aarch64-apple-darwin", "x86_64-apple-darwin", "x86_64-unknown-linux-gnu"]
# The archive format to use for non-windows builds (defaults .tar.xz)
unix-archive = ".tar.gz"
# Checksums to generate for each App
checksum = "sha256"
# Whether to consider the binaries in a package for distribution (defaults true)
dist = true
# The preferred dist version to use in CI (Cargo.toml SemVer syntax)
cargo-dist-version = "0.30.3"
# The installers to generate for each app
installers = []
# Which actions to run on pull requests
pr-run-mode = "skip"
# Use custom runners for ubuntu, as the default 20.04 is unsupported. The "global" runner is used
# for tasks like "plan", "host", "announce" and "build-global-artifacts" that are not specific to a
# target, and the "x86_64-unknown-linux-gnu" runner is used to build the extensions for the specific
# target.
github-custom-runners = { global = "ubuntu-22.04", x86_64-unknown-linux-gnu = "ubuntu-22.04" }