Skip to content

Commit f5608f0

Browse files
committed
Try to install libs as suggested in https://stackoverflow.com/a/16016792/7518605
1 parent e73f417 commit f5608f0

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

.github/workflows/rust.yml

+3
Original file line numberDiff line numberDiff line change
@@ -110,6 +110,9 @@ jobs:
110110
- uses: actions/checkout@v4
111111
- name: Install 32-bit target
112112
run: rustup target add i686-unknown-linux-gnu
113+
- name: Install 32-bit libs
114+
# https://stackoverflow.com/a/16016792/7518605
115+
run: sudo apt install gcc-multilib
113116
- name: Run some tests on 32-bit target
114117
run: cargo test --target i686-unknown-linux-gnu --test issues
115118
- name: Run some tests on 32-bit target (async-tokio)

0 commit comments

Comments
 (0)