diff options
| author | bors <bors@rust-lang.org> | 2023-02-11 16:23:56 +0000 |
|---|---|---|
| committer | bors <bors@rust-lang.org> | 2023-02-11 16:23:56 +0000 |
| commit | c29a00457a45238c4195481f02d748a74d8dfb26 (patch) | |
| tree | 2f992676ee86cdef7738e4d6797323b77895fa14 | |
| parent | d78a0be9b0a9b46559a65fb59634b6428ccf29ac (diff) | |
| parent | 87d6107f19a41c372caf3ea07a50020213375d70 (diff) | |
| download | rust-c29a00457a45238c4195481f02d748a74d8dfb26.tar.gz rust-c29a00457a45238c4195481f02d748a74d8dfb26.zip | |
Auto merge of #14127 - lnicola:windows-x86, r=lnicola
feat: Build `i686-pc-windows-msvc` binaries These have been requested a couple of times, so let's build them.
| -rw-r--r-- | .github/workflows/release.yaml | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index b070dd3406f..48f4c6b55ed 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -29,6 +29,9 @@ jobs: target: x86_64-pc-windows-msvc code-target: win32-x64 - os: windows-latest + target: i686-pc-windows-msvc + code-target: win32-ia32 + - os: windows-latest target: aarch64-pc-windows-msvc code-target: win32-arm64 - os: ubuntu-20.04 @@ -232,6 +235,10 @@ jobs: path: dist - uses: actions/download-artifact@v1 with: + name: dist-i686-pc-windows-msvc + path: dist + - uses: actions/download-artifact@v1 + with: name: dist-aarch64-pc-windows-msvc path: dist - run: ls -al ./dist |
