summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorClement Tsang <34804052+ClementTsang@users.noreply.github.com>2021-10-03 16:44:50 -0400
committerGitHub <noreply@github.com>2021-10-03 16:44:50 -0400
commit3c51245d35b8f044026a065578de56982d2f2381 (patch)
tree7c07a6568a0ea86843cbc07b625144a7eee3534d
parent9071e372834c92304bf104ae827971c48dbac6d1 (diff)
ci: Disable cross for i686 Windows, add multilib for i686 Linux for Nightly (#592)
Disables an unnecessary use of cross for i686 Windows, and add multilib for i686 Linux since apparently that's needed now.
-rw-r--r--.github/workflows/nightly.yml9
1 files changed, 8 insertions, 1 deletions
diff --git a/.github/workflows/nightly.yml b/.github/workflows/nightly.yml
index 2b07acc7..c94bbf9b 100644
--- a/.github/workflows/nightly.yml
+++ b/.github/workflows/nightly.yml
@@ -68,7 +68,7 @@ jobs:
- {
os: "ubuntu-18.04",
target: "i686-unknown-linux-gnu",
- cross: true,
+ cross: false,
strip: true,
}
- {
@@ -143,6 +143,13 @@ jobs:
override: true
target: ${{ matrix.triple.target }}
+ - name: Install gcc-multilib for (Linux i686)
+ if: matrix.triple.target == 'i686-unknown-linux-gnu' || matrix.triple.target == 'i686-unknown-linux-musl'
+ run: |
+ sudo dpkg --add-architecture i386
+ sudo apt update
+ sudo apt install gcc-multilib -y
+
- uses: Swatinem/rust-cache@v1
with:
key: ${{ matrix.triple.target }}