mirror of
https://github.com/k3s-io/k3s.git
synced 2024-06-07 19:41:36 +00:00
29 lines
449 B
Plaintext
29 lines
449 B
Plaintext
|
#!/bin/bash
|
||
|
set -e -x
|
||
|
cd $(dirname $0)/..
|
||
|
|
||
|
. ./scripts/test-helpers
|
||
|
|
||
|
artifacts=$(pwd)/dist/artifacts
|
||
|
mkdir -p $artifacts
|
||
|
|
||
|
# ---
|
||
|
|
||
|
. ./scripts/test-run-basics
|
||
|
|
||
|
# # ---
|
||
|
|
||
|
E2E_OUTPUT=$artifacts test-run-sonobuoy
|
||
|
|
||
|
# # ---
|
||
|
|
||
|
# if [ "$ARCH" != 'amd64' ]; then
|
||
|
# printf "\033[33mSkipping remaining tests, images not available for $ARCH.\033[m\n"
|
||
|
# exit 0
|
||
|
# fi
|
||
|
|
||
|
# # ---
|
||
|
|
||
|
# test-run-sonobuoy mysql
|
||
|
# test-run-sonobuoy postgres
|
||
|
# test-run-sonobuoy dqlite
|