mirror of
https://github.com/clap-rs/clap
synced 2024-12-13 22:32:33 +00:00
Fix CI for i686 ubuntu
This commit is contained in:
parent
312e4bbbe6
commit
db3f10c8c4
1 changed files with 3 additions and 1 deletions
4
.github/workflows/ci.yml
vendored
4
.github/workflows/ci.yml
vendored
|
@ -76,7 +76,9 @@ jobs:
|
||||||
uses: actions/checkout@v2
|
uses: actions/checkout@v2
|
||||||
- name: Install linker
|
- name: Install linker
|
||||||
if: matrix.target == 'i686-unknown-linux-gnu'
|
if: matrix.target == 'i686-unknown-linux-gnu'
|
||||||
run: sudo apt-get install gcc-5-multilib lib32gcc-5-dev
|
run: |
|
||||||
|
sudo apt-get update
|
||||||
|
sudo apt-get install gcc-5-multilib lib32gcc-5-dev
|
||||||
- name: Test almost no features
|
- name: Test almost no features
|
||||||
uses: actions-rs/cargo@v1
|
uses: actions-rs/cargo@v1
|
||||||
if: matrix.features == 'none'
|
if: matrix.features == 'none'
|
||||||
|
|
Loading…
Reference in a new issue