Skip to content

Commit 528ed7e

Browse files
committed
fix: remove redundant LLVM dependency installation and add i386 support for libraries
1 parent a7f7a32 commit 528ed7e

File tree

1 file changed

+2
-4
lines changed

1 file changed

+2
-4
lines changed

.github/workflows/compilation_on_android_ubuntu.yml

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -350,9 +350,6 @@ jobs:
350350
with:
351351
os: ${{ matrix.os }}
352352

353-
- name: install llvm dependencies
354-
run: sudo apt update && sudo apt install -y libzstd-dev zlib1g-dev
355-
356353
- name: Build wamrc
357354
run: |
358355
mkdir build && cd build
@@ -363,8 +360,9 @@ jobs:
363360
- name: Install dependencies for X86_32
364361
if: matrix.build_target == 'X86_32'
365362
run: |
363+
sudo dpkg --add-architecture i386
366364
sudo apt-get update
367-
sudo apt-get install -y g++-multilib
365+
sudo apt-get install -y g++-multilib libzstd-dev:i386 zlib1g-dev:i386
368366
369367
- name: Build and run unit tests
370368
run: |

0 commit comments

Comments
 (0)