mirror of
https://github.com/k3s-io/k3s.git
synced 2024-06-07 19:41:36 +00:00
7734015db7
We have had a couple issues with newer agents not working with old servers or vice versa. Add a CI test to test variations on uplevel/downlevel server/agent against latest, stable, and the previous branch. Signed-off-by: Brad Davidson <brad.davidson@rancher.com>
42 lines
654 B
Bash
Executable File
42 lines
654 B
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 $?"
|
|
|
|
. ./scripts/test-run-compat
|
|
echo "Did test-run-compat $?"
|
|
|
|
# ---
|
|
|
|
[ "$ARCH" != 'amd64' ] && \
|
|
early-exit "Skipping remaining tests, images not available for $ARCH."
|
|
|
|
E2E_OUTPUT=$artifacts test-run-sonobuoy
|
|
echo "Did test-run-sonobuoy $?"
|
|
# ---
|
|
|
|
[ "$DRONE_BUILD_EVENT" = 'tag' ] && \
|
|
early-exit 'Skipping remaining tests on tag.'
|
|
|
|
# ---
|
|
|
|
test-run-sonobuoy mysql
|
|
test-run-sonobuoy postgres
|
|
|
|
exit 0
|