This version is built with PGO, making the compiler notably faster (primarily affecting the runtime of the libcxx tests).
This reduces the runtime of the mingw-w64 test builds from 1 h 39 min to 1 h 17 min. Signed-off-by: Martin Storsjö <[email protected]> --- .github/workflows/build.yml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index af1da2142..4a0238893 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -17,7 +17,7 @@ jobs: uses: actions/checkout@v4 with: repository: mstorsjo/llvm-mingw - ref: 20250430 + ref: 20250709 - name: Check out the mingw-w64 version to be tested uses: actions/checkout@v4 with: @@ -41,7 +41,7 @@ jobs: if [ "$src_crt" = "ucrtbase" ]; then src_crt=ucrt fi - curl -LO https://github.com/mstorsjo/llvm-mingw/releases/download/20250430/llvm-mingw-20250430-$src_crt-$DISTRO.tar.xz + curl -LO https://github.com/mstorsjo/llvm-mingw/releases/download/20250709/llvm-mingw-20250709-$src_crt-$DISTRO.tar.xz tar -Jxf llvm-mingw-*.tar.xz rm llvm-mingw-*.tar.xz mkdir install @@ -76,7 +76,7 @@ jobs: if [ "$src_crt" = "ucrtbase" ]; then src_crt=ucrt fi - curl -LO https://github.com/mstorsjo/llvm-mingw/releases/download/20250430/llvm-mingw-20250430-$src_crt-$arch.zip + curl -LO https://github.com/mstorsjo/llvm-mingw/releases/download/20250709/llvm-mingw-20250709-$src_crt-$arch.zip unzip -q llvm-mingw-*.zip rm llvm-mingw-*.zip mv llvm-mingw-* llvm-mingw @@ -148,7 +148,7 @@ jobs: uses: actions/checkout@v4 with: repository: mstorsjo/llvm-mingw - ref: 20250430 + ref: 20250709 - name: Run tests run: | ./run-tests.sh /llvm-mingw @@ -203,7 +203,7 @@ jobs: uses: actions/checkout@v4 with: repository: mstorsjo/llvm-mingw - ref: 20250430 + ref: 20250709 - name: Checkout llvm-project run: | bash -c "CHECKOUT_ONLY=1 ./build-llvm.sh" @@ -541,7 +541,7 @@ jobs: uses: actions/checkout@v4 with: repository: mstorsjo/llvm-mingw - ref: 20250430 + ref: 20250709 - name: Run tests run: | gcc test/hello.c -o hello.exe -- 2.43.0 _______________________________________________ Mingw-w64-public mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/mingw-w64-public
