Skip to content

Commit 4e92806

Browse files
committed
Don't run tests so many times
1 parent 84e8055 commit 4e92806

File tree

2 files changed

+10
-2
lines changed

2 files changed

+10
-2
lines changed

.github/workflows/release-binaries-windows.yml

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,3 +17,11 @@ jobs:
1717
subst S: ${{ github.workspace }}
1818
cd S:\llvm\utils\release\
1919
.\build_llvm_release.bat --x64 --version 21.1.3 --local-python --skip-checkout
20+
- if: always()
21+
run: |
22+
S:\llvm\utils\release\llvm_package_21.1.3\build_amd64_stage0\bin\llvm-remarkutil.exe filter S:\llvm\test\tools\llvm-remarkutil/Inputs/filter.yaml | diff S:\llvm\test\tools\llvm-remarkutil/Inputs/filter.yaml - > diff.out
23+
- if: always()
24+
uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4.6.2
25+
with:
26+
name: diff
27+
path: diff.out

llvm/utils/release/build_llvm_release.bat

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -278,7 +278,7 @@ cmake -GNinja %cmake_flags% ^
278278
-DLLVM_TARGETS_TO_BUILD=Native ^
279279
%llvm_src%\llvm || exit /b 1
280280
ninja || ninja || ninja || exit /b 1
281-
ninja check-llvm || ninja check-llvm || ninja check-llvm || exit /b 1
281+
ninja check-llvm || exit /b 1
282282
ninja check-clang || ninja check-clang || ninja check-clang || exit /b 1
283283
ninja check-lld || ninja check-lld || ninja check-lld || exit /b 1
284284
if "%arch%"=="amd64" (
@@ -312,7 +312,7 @@ cmake -GNinja %cmake_flags% ^
312312
-DPYTHON_HOME=%PYTHONHOME% ^
313313
%cmake_profile_flags% %llvm_src%\llvm || exit /b 1
314314
ninja || ninja || ninja || exit /b 1
315-
ninja check-llvm || ninja check-llvm || ninja check-llvm || exit /b 1
315+
ninja check-llvm || exit /b 1
316316
ninja check-clang || ninja check-clang || ninja check-clang || exit /b 1
317317
ninja check-lld || ninja check-lld || ninja check-lld || exit /b 1
318318
if "%arch%"=="amd64" (

0 commit comments

Comments
 (0)