Skip to content
This repository was archived by the owner on Mar 27, 2024. It is now read-only.

Commit ddd977c

Browse files
committed
* Added .multi-arch.sh
Signed-off-by: Christian Berger <christian.berger@gu.se>
1 parent bff4a7f commit ddd977c

File tree

1 file changed

+21
-0
lines changed

1 file changed

+21
-0
lines changed

.multi-arch.sh

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
#!/bin/sh
2+
3+
VERSION=$1
4+
5+
cat <<EOF >/tmp/multi.yml
6+
image: chalmersrevere/opendlv-video-vpx-encoder-multi:$VERSION
7+
manifests:
8+
- image: chalmersrevere/opendlv-video-vpx-encoder-amd64:$VERSION
9+
platform:
10+
architecture: amd64
11+
os: linux
12+
- image: chalmersrevere/opendlv-video-vpx-encoder-armhf:$VERSION
13+
platform:
14+
architecture: arm
15+
os: linux
16+
- image: chalmersrevere/opendlv-video-vpx-encoder-aarch64:$VERSION
17+
platform:
18+
architecture: arm64
19+
os: linux
20+
EOF
21+
manifest-tool-linux-amd64 push from-spec /tmp/multi.yml

0 commit comments

Comments
 (0)