File tree Expand file tree Collapse file tree 1 file changed +1
-6
lines changed Expand file tree Collapse file tree 1 file changed +1
-6
lines changed Original file line number Diff line number Diff 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]
You can’t perform that action at this time.
0 commit comments