File tree Expand file tree Collapse file tree 4 files changed +4
-9
lines changed Expand file tree Collapse file tree 4 files changed +4
-9
lines changed Original file line number Diff line number Diff line change 47
47
build-proxy-init-image \
48
48
--cache-from type=local,src="$RUNNER_TEMP/.buildx-cache" \
49
49
--cache-to type=local,dest="$RUNNER_TEMP/.buildx-cache",mode=max \
50
- --platform linux/amd64,linux/arm64,linux/arm/v7
50
+ --platform linux/amd64,linux/arm64
51
51
- run : just-dev prune-action-cache "$RUNNER_TEMP/.buildx-cache"
52
52
53
53
# Only publish images on release
63
63
build-proxy-init-image \
64
64
--cache-from type=local,src="$RUNNER_TEMP/.buildx-cache" \
65
65
--cache-to type=local,dest="$RUNNER_TEMP/.buildx-cache",mode=max \
66
- --platform linux/amd64,linux/arm64,linux/arm/v7 \
66
+ --platform linux/amd64,linux/arm64 \
67
67
--output type=registry
68
68
- if : needs.meta.outputs.mode == 'release'
69
69
uses : sigstore/cosign-installer@d58896d6a1865668819e1d91763c7751a165e159
Original file line number Diff line number Diff line change @@ -31,13 +31,11 @@ jobs:
31
31
needs : meta
32
32
strategy :
33
33
matrix :
34
- arch : [amd64, arm64, arm ]
34
+ arch : [amd64, arm64]
35
35
os : [windows, linux]
36
36
exclude :
37
37
- os : windows
38
38
arch : arm64
39
- - os : windows
40
- arch : arm
41
39
timeout-minutes : 10
42
40
runs-on : ubuntu-24.04
43
41
container : ghcr.io/linkerd/dev:v47-rust-musl
Original file line number Diff line number Diff line change 2
2
targets = [
3
3
{ triple = " x86_64-unknown-linux-gnu" },
4
4
{ triple = " aarch64-unknown-linux-gnu" },
5
- { triple = " armv7-unknown-linux-gnu" },
6
5
]
7
6
8
7
[advisories ]
Original file line number Diff line number Diff line change @@ -13,7 +13,7 @@ version := `just-cargo crate-version $TARGETCRATE`
13
13
14
14
profile := 'debug'
15
15
16
- # The architecture name to use for packages. Either 'amd64', 'arm64', or 'arm '.
16
+ # The architecture name to use for packages. Either 'amd64' or 'arm64 '.
17
17
arch := env_var_or_default("TARGETARCH", "amd64")
18
18
19
19
# The OS name to use for packages. Either 'linux' or 'windows'.
@@ -25,8 +25,6 @@ _cargo-target := if os + '-' + arch == "linux-amd64" {
25
25
"x86_64-unknown-linux-musl"
26
26
} else if os + '-' + arch == "linux-arm64" {
27
27
"aarch64-unknown-linux-musl"
28
- } else if os + '-' + arch == "linux-arm" {
29
- "armv7-unknown-linux-musleabihf"
30
28
} else if os + '-' + arch == "windows-amd64" {
31
29
"x86_64-pc-windows-gnu"
32
30
} else {
You can’t perform that action at this time.
0 commit comments