Skip to content

Commit

Permalink
Avoid failures from Install 32bit dependencies issues
Browse files Browse the repository at this point in the history
Multiple CI build failed due to 32 bits dependencies
issues. Let's try to move them as optional.
  • Loading branch information
atoomic authored and khwilliamson committed Mar 12, 2020
1 parent 3402c4f commit 29a8ce8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/smoke-linux.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,8 +38,8 @@ jobs:
fetch-depth: 10
- name: Install 32bit dependencies
run: |
sudo dpkg --add-architecture i386
sudo apt-get -y install gcc-multilib
sudo dpkg --add-architecture i386 ||:
sudo apt-get -y install gcc-multilib ||:
- name: Configure
run: |
./Configure -des -Dusedevel ${{ matrix.CONFIGURE_ARGS }} -Dprefix="$HOME/perl-blead" -DDEBUGGING
Expand Down

0 comments on commit 29a8ce8

Please sign in to comment.