-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathdist-workspace.toml
More file actions
42 lines (39 loc) · 1.76 KB
/
dist-workspace.toml
File metadata and controls
42 lines (39 loc) · 1.76 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
[workspace]
members = ["cargo:."]
# Config for 'dist'
[dist]
# 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.31.0"
# CI backends to support
ci = "github"
# The installers to generate for each app
installers = ["shell"]
# The archive format to use for non-windows builds (defaults .tar.xz)
unix-archive = ".tar.gz"
# Which actions to run on pull requests
pr-run-mode = "plan"
# Post-announce jobs to run in CI
post-announce-jobs = ["./post-announce"]
# Path that installers should place binaries in
install-path = "CARGO_HOME"
# Whether to install an updater program
install-updater = false
# Build only the required packages, and individually
precise-builds = true
# Don't create GitHub releases, we handle that manually to manually control which release is marked as latest
create-release = false
# Use the stage just after plan because we need its output to create the draft release
local-artifacts-jobs = ["./create-draft-release"]
# Uncomment this to rerun `dist generate`
# ⚠️ This will overwrite any manual changes to generated files, make sure to re-apply them if they're still relevant
# We need this to prevent gh release edit from marking any release as latest, but cargo-dist does not support that customizing this yet
# https://github.com/axodotdev/cargo-dist/issues/2244
allow-dirty = ["ci"]
[dist.github-action-commits]
"actions/checkout" = "de0fac2e4500dabe0009e67214ff5f5447ce83dd" # v6.0.2
"actions/upload-artifact" = "b7c566a772e6b6bfb58ed0dc250532a479d7789f" # v6.0.0
"actions/download-artifact" = "37930b1c2abaa49bbe596cd826c3c89aef350131" # v7.0.0
[dist.github-custom-runners]
aarch64-unknown-linux-musl = "codspeedhq-arm64-ubuntu-24.04"