summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorClement Tsang <34804052+ClementTsang@users.noreply.github.com>2021-10-03 17:13:14 -0400
committerGitHub <noreply@github.com>2021-10-03 17:13:14 -0400
commit31072d19527bdd8e85fdabe83bc81bf2cfe9919f (patch)
tree5f48ad9ec9e837b210ee859c223bc8024c51fc45
parent3c51245d35b8f044026a065578de56982d2f2381 (diff)
ci: revert previous i686 change (#593)
Reverts #592, this was done incorrectly, I changed the wrong thing and I also didn't need to change said thing.
-rw-r--r--.github/workflows/nightly.yml9
1 files changed, 1 insertions, 8 deletions
diff --git a/.github/workflows/nightly.yml b/.github/workflows/nightly.yml
index c94bbf9b..2b07acc7 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: false,
+ cross: true,
strip: true,
}
- {
@@ -143,13 +143,6 @@ 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 }}