Skip to content

Commit 7b248cf

Browse files
committed
fix: remove redundant LLVM dependency installation and add i386 support for libraries
1 parent b16050e commit 7b248cf

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
@@ -351,9 +351,6 @@ jobs:
351351
with:
352352
os: ${{ matrix.os }}
353353

354-
- name: install llvm dependencies
355-
run: sudo apt update && sudo apt install -y libzstd-dev zlib1g-dev
356-
357354
- name: Build wamrc
358355
run: |
359356
mkdir build && cd build
@@ -364,8 +361,9 @@ jobs:
364361
- name: Install dependencies for X86_32
365362
if: matrix.build_target == 'X86_32'
366363
run: |
364+
sudo dpkg --add-architecture i386
367365
sudo apt-get update
368-
sudo apt-get install -y g++-multilib
366+
sudo apt-get install -y g++-multilib libzstd-dev:i386 zlib1g-dev:i386
369367
370368
- name: Build and run unit tests
371369
run: |

0 commit comments

Comments
 (0)