Skip to content

Commit 00bad59

Browse files
committed
WIP: github: Build the cross Windows toolchains with the PGO'd Linux toolchain
This increases the total length of building the Windows toolchains to 4 LLVM builds serially, rather than 3 usually. (But by using a PGO'd toolchain for building for Windows, it becomes a little quicker than otherwise.) But doing this, temporarily for testing, to get more testing coverage of the PGO'd toolchain.
1 parent 361f0a0 commit 00bad59

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/build.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -397,7 +397,7 @@ jobs:
397397
# architectures). The binaries built here match actual releases quite closely.
398398
linux-cross-windows:
399399
if: (github.event_name != 'schedule') || (github.repository == 'mstorsjo/llvm-mingw')
400-
needs: [linux-stage1, linux-profile, prepare]
400+
needs: [linux, linux-profile, prepare]
401401
runs-on: ubuntu-latest
402402
strategy:
403403
fail-fast: false
@@ -410,7 +410,7 @@ jobs:
410410
steps:
411411
- uses: actions/download-artifact@v4
412412
with:
413-
name: linux-stage1-${{matrix.crt}}-x86_64-toolchain
413+
name: linux-${{matrix.crt}}-x86_64-toolchain
414414
- name: Unpack cross toolchain
415415
run: |
416416
tar -Jxf llvm-mingw-*.tar.xz

0 commit comments

Comments
 (0)