-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconfig.nuon.sample
More file actions
43 lines (37 loc) · 1.02 KB
/
config.nuon.sample
File metadata and controls
43 lines (37 loc) · 1.02 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
#
# alpine-rustx configuration
#
{
rust_version: "1.87.0"
alpine_version: "3.21"
# Note: Linux targets currently only support the musl variant.
targets: [
"x86_64-unknown-linux-musl"
"aarch64-unknown-linux-musl"
#"x86_64-pc-windows-gnu"
#"i686-pc-windows-gnu"
#"aarch64-apple-darwin"
#"x86_64-apple-darwin"
]
# Install additional Cargo components (default: [])
#
#components: ["clippy", "rustfmt"]
# Install nextest (default: false)
#
#nextest: true
# Run custom commands when building Docker image
#
#commands: [
# "apk add --no-cache nodejs npm"
#]
# Isolation mechanism used for building toolchains
#
# When building on macOS, set this to `docker` as `bubblewrap` is not available.
#
# Possible values: bubblewrap (default), docker
#
# The Docker isolation creates a volume named alpine-rustx-build. It is reused
# across cache runs and can be removed.
#
#isolation: "docker"
}