Skip to content

Commit b7cc91e

Browse files
committed
include riscv64 in push-manifest script
Signed-off-by: Avi Deitcher <[email protected]>
1 parent 709a945 commit b7cc91e

File tree

2 files changed

+6
-1
lines changed

2 files changed

+6
-1
lines changed

scripts/push-manifest.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ fi
5252
# Push manifest list
5353
OUT=$(manifest-tool $MT_ARGS push from-args \
5454
--ignore-missing \
55-
--platforms linux/amd64,linux/arm64,linux/s390x \
55+
--platforms linux/amd64,linux/arm64,linux/s390x,linux/riscv64 \
5656
--template "$TARGET"-ARCH \
5757
--target "$TARGET")
5858

tools/alpine/push-manifest.sh

+5
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@ IMAGE=$2
1717
IMG_X86_64=$(head -1 versions.x86_64 | sed 's,[#| ]*,,')
1818
IMG_ARM64=$(head -1 versions.aarch64 | sed 's,[#| ]*,,')
1919
IMG_s390x=$(head -1 versions.s390x | sed 's,[#| ]*,,')
20+
IMG_RISCV64=$(head -1 versions.riscv64 | sed 's,[#| ]*,,')
2021
# Extract the TAG from the tree hash - just like how "linuxkit pkg show-tag" does it - name and build the manifest target name
2122
TAG=$(git ls-tree --full-tree HEAD -- $(pwd) | awk '{print $3}')
2223
DIRTY=$(git diff-index HEAD -- $(pwd))
@@ -42,6 +43,10 @@ manifests:
4243
platform:
4344
architecture: s390x
4445
os: linux
46+
- image: $IMG_RISCV64
47+
platform:
48+
architecture: riscv64
49+
os: linux
4550
EOF
4651

4752
# Work out credentials. On macOS they are needed for manifest-tool and

0 commit comments

Comments
 (0)