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>
78 lines
1.6 KiB
Bash
Executable File
78 lines
1.6 KiB
Bash
Executable File
#!/bin/bash
|
|
set -e -x
|
|
cd $(dirname $0)/..
|
|
|
|
. ./scripts/codespell.sh
|
|
. ./scripts/version.sh
|
|
. ./scripts/test-helpers
|
|
|
|
artifacts=$(pwd)/dist/artifacts
|
|
mkdir -p $artifacts
|
|
|
|
# ---
|
|
|
|
docker ps
|
|
|
|
# ---
|
|
|
|
. ./scripts/test-run-basics
|
|
echo "Did test-run-basics $?"
|
|
|
|
# Skipping compact tests for s390x since there is no previous s390x release
|
|
if [ ${ARCH} != s390x ]; then
|
|
. ./scripts/test-run-compat
|
|
echo "Did test-run-compat $?"
|
|
fi
|
|
|
|
. ./scripts/test-run-etcd
|
|
echo "Did test-run-etcd $?"
|
|
|
|
. ./scripts/test-run-lazypull
|
|
echo "Did test-run-lazypull $?"
|
|
|
|
# ---
|
|
|
|
[ "$ARCH" != 'amd64' ] && \
|
|
early-exit "Skipping remaining tests, images not available for $ARCH."
|
|
|
|
E2E_OUTPUT=$artifacts test-run-sonobuoy serial
|
|
echo "Did test-run-sonobuoy serial $?"
|
|
|
|
# ---
|
|
|
|
if [ "$DRONE_BUILD_EVENT" = 'tag' ]; then
|
|
E2E_OUTPUT=$artifacts test-run-sonobuoy parallel
|
|
echo "Did test-run-sonobuoy parallel $?"
|
|
early-exit 'Skipping remaining tests on tag.'
|
|
fi
|
|
# ---
|
|
|
|
test-run-sonobuoy etcd serial
|
|
echo "Did test-run-sonobuoy-etcd serial $?"
|
|
test-run-sonobuoy mysql serial
|
|
echo "Did test-run-sonobuoy-mysqk serial $?"
|
|
test-run-sonobuoy postgres serial
|
|
echo "Did test-run-sonobuoy-postgres serial $?"
|
|
|
|
# Wait until all serial tests have finished
|
|
delay=15
|
|
(
|
|
set +x
|
|
while [ $(count-running-tests) -ge 1 ]; do
|
|
sleep $delay
|
|
done
|
|
)
|
|
E2E_OUTPUT=$artifacts test-run-sonobuoy parallel
|
|
echo "Did test-run-sonobuoy parallel $?"
|
|
test-run-sonobuoy etcd parallel
|
|
echo "Did test-run-sonobuoy-etcd parallel $?"
|
|
test-run-sonobuoy mysql parallel
|
|
echo "Did test-run-sonobuoy-mysql parallel $?"
|
|
test-run-sonobuoy postgres parallel
|
|
echo "Did test-run-sonobuoy-postgres parallel $?"
|
|
|
|
|
|
|
|
|
|
exit 0
|