From 3671e62bc7caab2069a957af1342e027bc90303b Mon Sep 17 00:00:00 2001 From: Vincent Fu Date: Mon, 19 Aug 2024 20:34:33 +0000 Subject: [PATCH] ci: remove arm64 case for tests We no longer run tests on arm64 platforms, so remove related part of the shell script. Signed-off-by: Vincent Fu --- ci/actions-full-test.sh | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/ci/actions-full-test.sh b/ci/actions-full-test.sh index d2fb4201..12689133 100755 --- a/ci/actions-full-test.sh +++ b/ci/actions-full-test.sh @@ -10,11 +10,7 @@ main() { echo "Running long running tests..." export PYTHONUNBUFFERED="TRUE" - if [[ "${CI_TARGET_ARCH}" == "arm64" ]]; then - python3 t/run-fio-tests.py --skip 6 1007 1008 --debug -p 1010:"--skip 15 16 17 18 19 20" - else - python3 t/run-fio-tests.py --skip 6 1007 1008 --debug - fi + python3 t/run-fio-tests.py --skip 6 1007 1008 --debug make -C doc html } -- 2.25.1