forked from open-telemetry/opentelemetry-configuration
-
Notifications
You must be signed in to change notification settings - Fork 0
/
dist.toml
29 lines (27 loc) · 1.09 KB
/
dist.toml
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
[package]
name = "otel_config_validator"
description = "Releaser for otel_config_validator"
version = "0.1.0"
license = "Apache-2.0"
repository = "https://github.com/open-telemetry/opentelemetry-configuration"
homepage = "https://opentelemetry.io/"
binaries = ["validator/otel_config_validator"]
build-command = ["make", "validator"]
# Config for 'cargo dist'
[dist]
# The preferred cargo-dist version to use in CI (Cargo.toml SemVer syntax)
cargo-dist-version = "0.19.1"
# CI backends to support
ci = "github"
# The installers to generate for each app
installers = ["shell", "powershell"]
# Target platforms to build apps for (Rust target-triple syntax)
targets = ["aarch64-apple-darwin", "x86_64-apple-darwin", "x86_64-unknown-linux-gnu", "x86_64-unknown-linux-musl", "x86_64-pc-windows-msvc"]
# Path that installers should place binaries in
install-path = ["$OTEL_CONFIG_VALIDATOR_HOME/bin", "~/.local/bin"]
# Publish jobs to run in CI
pr-run-mode = "plan"
# A prefix git tags must include for cargo-dist to care about them
tag-namespace = "validator"
# Whether to install an updater program
install-updater = false