Fix CI for i686 ubuntu

This commit is contained in:
Pavan Kumar Sunkara 2020-12-25 22:09:27 +00:00 committed by GitHub
parent 312e4bbbe6
commit db3f10c8c4
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -76,7 +76,9 @@ jobs:
uses: actions/checkout@v2
- name: Install linker
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
uses: actions-rs/cargo@v1
if: matrix.features == 'none'