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:
267
267
# No 'sudo' is available
268
268
install : |
269
269
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
271
271
git config --global --add safe.directory ${{ github.workspace }}
272
272
git config --global --add safe.directory ${{ github.workspace }}/src/softfloat
273
273
git config --global --add safe.directory ${{ github.workspace }}/src/mini-gdbstub
274
- git config --global --add safe.directory ${{ github.workspace }}/tests/riscv-arch-test
275
274
wget https://apt.llvm.org/llvm.sh
276
275
chmod +x ./llvm.sh
277
276
./llvm.sh 18
@@ -281,16 +280,12 @@ jobs:
281
280
# Append custom commands here
282
281
run : |
283
282
make artifact
284
- make ENABLE_ARCH_TEST=1 artifact
285
283
make -j$(nproc)
286
284
make check -j$(nproc)
287
285
make ENABLE_JIT=1 clean && make ENABLE_JIT=1 check -j$(nproc)
288
286
make ENABLE_JIT=1 clean && make ENABLE_EXT_A=0 ENABLE_JIT=1 check -j$(nproc)
289
287
make ENABLE_JIT=1 clean && make ENABLE_EXT_F=0 ENABLE_JIT=1 check -j$(nproc)
290
288
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
294
289
295
290
coding-style :
296
291
needs : [detect-code-related-file-changes]
You can’t perform that action at this time.
0 commit comments