ci: remove arm64 case for tests
authorVincent Fu <vincent.fu@samsung.com>
Mon, 19 Aug 2024 20:34:33 +0000 (20:34 +0000)
committerVincent Fu <vincent.fu@samsung.com>
Wed, 21 Aug 2024 18:55:28 +0000 (18:55 +0000)
We no longer run tests on arm64 platforms, so remove related part of the
shell script.

Signed-off-by: Vincent Fu <vincent.fu@samsung.com>
ci/actions-full-test.sh

index d2fb4201ae37ba1f4f9bcdce91acc8dcc3338733..126891333292cb9baf7696f5095866cdb82cff92 100755 (executable)
@@ -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
 }