Skip to content

Commit 2052a1f

Browse files
committed
CI: Drop unstable architecture test on Arm64
The RISCOF crashes intermittently and at different locations, and also takes a long time to reproduce. So, drop the test in Arm64 CI and run tests only locally.
1 parent 4397618 commit 2052a1f

File tree

1 file changed

+1
-6
lines changed

1 file changed

+1
-6
lines changed

.github/workflows/main.yml

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -267,11 +267,10 @@ jobs:
267267
# No 'sudo' is available
268268
install: |
269269
apt update -qq
270-
apt install -yqq make git clang python3 python3-pip python3-venv libsdl2-dev libsdl2-mixer-dev lsb-release wget software-properties-common gnupg bc
270+
apt install -yqq make git clang libsdl2-dev libsdl2-mixer-dev lsb-release wget software-properties-common gnupg bc
271271
git config --global --add safe.directory ${{ github.workspace }}
272272
git config --global --add safe.directory ${{ github.workspace }}/src/softfloat
273273
git config --global --add safe.directory ${{ github.workspace }}/src/mini-gdbstub
274-
git config --global --add safe.directory ${{ github.workspace }}/tests/riscv-arch-test
275274
wget https://apt.llvm.org/llvm.sh
276275
chmod +x ./llvm.sh
277276
./llvm.sh 18
@@ -281,16 +280,12 @@ jobs:
281280
# Append custom commands here
282281
run: |
283282
make artifact
284-
make ENABLE_ARCH_TEST=1 artifact
285283
make -j$(nproc)
286284
make check -j$(nproc)
287285
make ENABLE_JIT=1 clean && make ENABLE_JIT=1 check -j$(nproc)
288286
make ENABLE_JIT=1 clean && make ENABLE_EXT_A=0 ENABLE_JIT=1 check -j$(nproc)
289287
make ENABLE_JIT=1 clean && make ENABLE_EXT_F=0 ENABLE_JIT=1 check -j$(nproc)
290288
make ENABLE_JIT=1 clean && make ENABLE_EXT_C=0 ENABLE_JIT=1 check -j$(nproc)
291-
.ci/riscv-toolchain-install.sh && export PATH=$PWD/toolchain/bin:$PATH
292-
python3 -m venv venv && . venv/bin/activate
293-
.ci/riscv-tests.sh
294289
295290
coding-style:
296291
needs: [detect-code-related-file-changes]

0 commit comments

Comments
 (0)