From 0cc948a87b54ff21a68a447bbd5c6e25fc5e61c1 Mon Sep 17 00:00:00 2001 From: zufuliu Date: Sun, 10 Dec 2023 07:06:36 +0800 Subject: [PATCH] Set `continue-on-error` for llvm-mingw builds. --- .github/workflows/main.yml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index e55cf321e3..5a021e9cdf 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -290,26 +290,31 @@ jobs: CALL "build\install_mingw.bat" llvm - name: Clang x64 Release + continue-on-error: true run: | CALL "build\mingw\build.bat" llvm x86_64 CALL "build\make_zip.bat" Clang x64 Release 1 - name: Clang Win32 Release + continue-on-error: true run: | CALL "build\mingw\build.bat" llvm i686 CALL "build\make_zip.bat" Clang Win32 Release 1 - name: Clang AVX2 Release + continue-on-error: true run: | CALL "build\mingw\build.bat" llvm AVX2 CALL "build\make_zip.bat" Clang AVX2 Release 1 - name: Clang ARM64 Release + continue-on-error: true run: | CALL "build\mingw\build.bat" llvm aarch64 CALL "build\make_zip.bat" Clang ARM64 Release 1 - name: Clang ARM Release + continue-on-error: true run: | CALL "build\mingw\build.bat" llvm armv7 CALL "build\make_zip.bat" Clang ARM Release 1