mirror of
https://github.com/k3s-io/k3s.git
synced 2024-06-07 19:41:36 +00:00
3e3549e45c
* Update docs to include s390x arch Signed-off-by: Venkata Krishna Rohit Sakala <rohitsakala@gmail.com> * Add s390x drone pipeline Signed-off-by: Venkata Krishna Rohit Sakala <rohitsakala@gmail.com> * Install trivy linux arch only for amd64 This is done so that trivy is not installed for s390x arch Signed-off-by: Venkata Krishna Rohit Sakala <rohitsakala@gmail.com> * Add s390x arch if condition for Dockerfile.test Signed-off-by: Venkata Krishna Rohit Sakala <rohitsakala@gmail.com> * Add s390x arch in install script Signed-off-by: Venkata Krishna Rohit Sakala <rohitsakala@gmail.com> * Add s390x GOARCH in build script Signed-off-by: Venkata Krishna Rohit Sakala <rohitsakala@gmail.com> * Add SUFFIX s390x in scripts Signed-off-by: Venkata Krishna Rohit Sakala <rohitsakala@gmail.com> * Skip image scan for s390x arch Signed-off-by: Venkata Krishna Rohit Sakala <rohitsakala@gmail.com> * Update klipper-lb to version v0.3.5 Signed-off-by: Venkata Krishna Rohit Sakala <rohitsakala@gmail.com> * Update traefik version to v2.6.2 Signed-off-by: Venkata Krishna Rohit Sakala <rohitsakala@gmail.com> * Update registry to v2.8.1 in tests which supports s390x Signed-off-by: Venkata Krishna Rohit Sakala <rohitsakala@gmail.com> * Skip compact tests for s390x arch This is done because compact test require a previous k3s version which supports s390x and it is not available Signed-off-by: Venkata Krishna Rohit Sakala <rohitsakala@gmail.com>
81 lines
1.9 KiB
Bash
Executable File
81 lines
1.9 KiB
Bash
Executable File
#!/bin/bash
|
|
set -e -x
|
|
|
|
cd $(dirname $0)/..
|
|
|
|
ARCH=${DRONE_STAGE_ARCH:-$(arch)}
|
|
. ./scripts/version.sh
|
|
|
|
if [[ ! "$VERSION" =~ ^v[0-9]+\.[0-9]+\.[0-9]+(\-[^\+]*)?\+k3s.+$ ]]; then
|
|
echo "k3s version $VERSION does not match regex for rpm upload"
|
|
exit 0
|
|
fi
|
|
|
|
TMPDIR=$(mktemp -d)
|
|
cleanup() {
|
|
exit_code=$?
|
|
trap - EXIT INT
|
|
rm -rf ${TMPDIR}
|
|
exit ${exit_code}
|
|
}
|
|
trap cleanup EXIT INT
|
|
|
|
export HOME=${TMPDIR}
|
|
|
|
BIN_SUFFIX=""
|
|
if [ ${ARCH} = aarch64 ] || [ ${ARCH} = arm64 ]; then
|
|
BIN_SUFFIX="-arm64"
|
|
elif [ ${ARCH} = armv7l ] || [ ${ARCH} = arm ]; then
|
|
BIN_SUFFIX="-armhf"
|
|
elif [ ${ARCH} = s390x ]; then
|
|
BIN_SUFFIX="-s390x"
|
|
fi
|
|
|
|
# capture version of k3s
|
|
k3s_version=$(sed -E -e 's/^v([^-+]*).*$/\1/' <<< $VERSION)
|
|
# capture pre-release and metadata information of k3s
|
|
k3s_release=$(sed -E -e 's/\+k3s/+/; s/\+/-/g; s/^[^-]*//; s/^--/dev-/; s/-+/./g; s/^\.+//; s/\.+$//;' <<< $VERSION)
|
|
# k3s-selinux policy version needed for functionality
|
|
k3s_policyver=0.1-1
|
|
|
|
rpmbuild \
|
|
--define "k3s_version ${k3s_version}" \
|
|
--define "k3s_release ${k3s_release}" \
|
|
--define "k3s_policyver ${k3s_policyver}" \
|
|
--define "k3s_binary k3s${BIN_SUFFIX}" \
|
|
--define "_sourcedir ${PWD}" \
|
|
--define "_specdir ${PWD}" \
|
|
--define "_builddir ${PWD}" \
|
|
--define "_srcrpmdir ${PWD}" \
|
|
--define "_rpmdir ${PWD}/dist/rpm" \
|
|
--define "_buildrootdir ${PWD}/.rpm-build" \
|
|
-bb package/rpm/k3s.spec
|
|
|
|
if ! grep "BEGIN PGP PRIVATE KEY BLOCK" <<<"$PRIVATE_KEY"; then
|
|
echo "PRIVATE_KEY not defined, skipping rpm sign and upload"
|
|
exit 0
|
|
fi
|
|
|
|
cat <<\EOF >~/.rpmmacros
|
|
%_signature gpg
|
|
%_gpg_name ci@rancher.com
|
|
EOF
|
|
gpg --import - <<<"$PRIVATE_KEY"
|
|
|
|
expect <<EOF
|
|
set timeout 60
|
|
spawn sh -c "rpmsign --addsign dist/rpm/**/k3s-*.rpm"
|
|
expect "Enter pass phrase:"
|
|
send -- "$PRIVATE_KEY_PASS_PHRASE\r"
|
|
expect eof
|
|
lassign [wait] _ _ _ code
|
|
exit \$code
|
|
EOF
|
|
|
|
if [ -z "$AWS_S3_BUCKET" ]; then
|
|
echo "AWS_S3_BUCKET skipping rpm upload"
|
|
exit 0
|
|
fi
|
|
|
|
rpm-s3 --bucket $AWS_S3_BUCKET dist/rpm/**/k3s-*.rpm
|