File tree Expand file tree Collapse file tree 2 files changed +3
-4
lines changed Expand file tree Collapse file tree 2 files changed +3
-4
lines changed Original file line number Diff line number Diff line change @@ -283,7 +283,6 @@ jobs:
283
283
- name : Architecture test
284
284
env :
285
285
CC : ${{ steps.install_cc.outputs.cc }}
286
- LATEST_RELEASE : dummy
287
286
run : |
288
287
.ci/riscv-tests.sh
289
288
if : ${{ always() }}
@@ -342,7 +341,8 @@ jobs:
342
341
- uses : actions/checkout@v4
343
342
- name : install-dependencies
344
343
run : |
345
- brew install make dtc expect sdl2 sdl2_mixer bc e2fsprogs p7zip llvm@18 dcfldd
344
+ brew install make dtc expect sdl2 bc e2fsprogs p7zip llvm@18 dcfldd
345
+ brew install sdl2_mixer || echo "Warning: sdl2_mixer installation failed, continuing without SDL_MIXER support"
346
346
.ci/riscv-toolchain-install.sh
347
347
echo "${{ github.workspace }}/toolchain/bin" >> $GITHUB_PATH
348
348
echo "$(brew --prefix llvm@18)/bin" >> $GITHUB_PATH
Original file line number Diff line number Diff line change @@ -188,8 +188,7 @@ $(warning No sdl2-config in $$PATH. Check SDL2 installation in advance)
188
188
override ENABLE_SDL := 0
189
189
endif
190
190
ifeq (1, $(shell pkg-config --exists SDL2_mixer; echo $$? ) )
191
- $(warning No SDL2_mixer lib installed. Check SDL2_mixer installation in advance)
192
- override ENABLE_SDL := 0
191
+ $(warning No SDL2_mixer lib installed. SDL2_mixer support will be disabled)
193
192
override ENABLE_SDL_MIXER := 0
194
193
endif
195
194
endif
You can’t perform that action at this time.
0 commit comments