-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathdist-workspace.toml
More file actions
55 lines (51 loc) · 1.31 KB
/
dist-workspace.toml
File metadata and controls
55 lines (51 loc) · 1.31 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
49
50
51
52
53
54
55
[workspace]
members = ["cargo:."]
# Config for 'dist'
[dist]
# The preferred dist version to use in CI (Cargo.toml SemVer syntax)
cargo-dist-version = "0.30.0"
# CI backends to support
ci = "github"
# The installers to generate for each app
installers = []
# Target platforms to build apps for (Rust target-triple syntax)
targets = ["x86_64-unknown-linux-gnu", "x86_64-unknown-linux-musl"]
# Specify feature-flags that should be passed to a Cargo package when building it
# features = ["xdp"]
# Which actions to run on pull requests
pr-run-mode = "plan"
# Whether to install an updater program
install-updater = false
# Skip checking whether the specified configuration files are up to date
allow-dirty = ["ci"]
# Path that installers should place binaries in
install-path = "CARGO_HOME"
[dist.dependencies.apt]
ethtool = "*"
iputils-ping = "*"
iperf = "*"
iperf3 = "*"
pkg-config = "*"
m4 = "*"
clang = "*"
llvm = "*"
libelf-dev = "*"
libpcap-dev = "*"
gcc-multilib = "*"
libnftnl-dev = "*"
libmnl-dev = "*"
autoconf = "*"
automake = "*"
autopoint = "*"
flex = "*"
bison = "*"
gawk = "*"
libtool = "*"
musl-tools = "*"
libargs-dev = "*"
[dist.github-custom-runners]
global = "ubuntu-latest"
x86_64-unknown-linux-gnu = "ubuntu-latest"
x86_64-unknown-linux-musl = "ubuntu-latest"
[[dist.extra-artifacts]]
artifacts = ["scripts/install.sh"]