Skip to content

Commit

Permalink
Add dpkg 32bit
Browse files Browse the repository at this point in the history
  • Loading branch information
hassandraga committed Jun 19, 2024
1 parent e9211bc commit 8421ef8
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions .github/workflows/linux_arm.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,8 +42,8 @@ jobs:
strategy:
matrix:
include:
- cc: gcc
arch: arm64
# - cc: gcc
# arch: arm64
- cc: gcc
arch: arm
fail-fast: false
Expand All @@ -62,8 +62,10 @@ jobs:
if [ "${{ matrix.arch }}" == "arm64" ]; then
CC=gcc
elif [ "${{ matrix.arch }}" == "arm" ]; then
sudo apt install -y gcc-arm-linux-gnueabi
sudo dpkg --add-architecture i386
sudo apt update
sudo apt install -y libssl-dev:i386
sudo apt install -y gcc-arm-linux-gnueabi
CC=arm-linux-gnueabi-gcc
fi
echo "CC=$CC" >> $GITHUB_ENV
Expand Down

0 comments on commit 8421ef8

Please sign in to comment.