ci-automation/test.sh: remove PARALLEL_TEST passing (move to CI)

Signed-off-by: Thilo Fromm <thilo@kinvolk.io>
This commit is contained in:
Thilo Fromm 2022-04-01 13:54:08 +02:00
parent e22e5e7326
commit 6dcfd9aeb6
2 changed files with 8 additions and 6 deletions

View File

@ -33,6 +33,14 @@ CONTAINER_IMAGE_ROOT="/home/sdk/build/images"
# Image / vendor tests settings
#
# NOTE that these settings are evaluated by the vendor-tests script inside the
# SDK container. To override, new values must be passed into the container.
# Use something like
# echo "export [VAR]=\"${[VALUE]}\\"" > sdk_container/.env
# in your CI to override, e.g.
# echo "export PARALLEL_TESTS=\"5\"" > sdk_container/.env
# to override the number of test cases to be run in parallel.
# -- QEMU --
QEMU_IMAGE_NAME="flatcar_production_image.bin"

View File

@ -143,12 +143,6 @@ function test_run() {
-n "${container_name}" -C "${sdk_image}" -v "${vernum}" \
sudo emerge mantle
# Pass PARALLEL_TESTS to the container
if [ -n "${PARALLEL_TESTS-}" ] ; then
echo "export PARALLEL_TESTS=\"${PARALLEL_TESTS}\"" > sdk_container/.env
echo "rm -f 'sdk_container/.env'" >> ./ci-cleanup.sh
fi
local tap_merged_summary="results-${image}.tap"
local tap_merged_detailed="results-${image}-detailed.tap"
local retry=""