vmtest: add s390x config

Select the current config based on $ARCH value and thus rename
the existing config to config-latest.$ARCH.

Signed-off-by: Ilya Leoshkevich <iii@linux.ibm.com>
This commit is contained in:
Ilya Leoshkevich
2020-09-10 19:34:50 +02:00
committed by Andrii Nakryiko
parent ac4a0fa400
commit 3fac0b3d08
4 changed files with 2706 additions and 1 deletions

File diff suppressed because it is too large Load Diff

View File

@@ -22,3 +22,5 @@ travis_fold() {
echo -e "$line"
fi
}
ARCH=$(uname -m)

View File

@@ -14,7 +14,7 @@ fi
if [[ "${KERNEL}" = 'LATEST' ]]; then
travis_fold start build_kernel "Kernel build"
cp ${VMTEST_ROOT}/configs/latest.config .config
cp "$VMTEST_ROOT"/configs/config-latest."$ARCH" .config
make -j $((4*$(nproc))) olddefconfig all >/dev/null
travis_fold end build_kernel
fi