Skip to content

Commit 01b46dd

Browse files
Skip non-linux OCI package creation (#3053)
* Ignore non-linux package creation * Use WIP one-pipeline branch * Revert "Use WIP one-pipeline branch" This reverts commit 4a0762f.
1 parent 8c19ef9 commit 01b46dd

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

.gitlab/prepare-oci-package.sh

+5
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,11 @@
11
#!/usr/bin/env bash
22
set -euo pipefail
33

4+
if [ "$OS" != "linux" ]; then
5+
echo "Only linux packages are supported. Exiting"
6+
exit 0
7+
fi
8+
49
arch=${ARCH:-$(uname -m)}
510
if [[ "$arch" == "arm64" ]]; then
611
arch="aarch64"

0 commit comments

Comments
 (0)