add x86 gcc packages

This commit is contained in:
finn 2022-12-20 02:30:48 -08:00
parent a0fe6aeead
commit 42a8132315
2 changed files with 4 additions and 1 deletions

View file

@ -50,7 +50,7 @@ compile:
cache:
paths:
- target/
key: rust-target-$TARGET
artifacts:
paths:
- libsignal_jni-$TARGET.so

View file

@ -20,6 +20,9 @@ case "${TARGET}" in
x86_64-unknown-linux-musl)
apt-get install -yqq "${PACKAGES[@]}" musl-tools
;;
x86_64-unknown-linux-gnu)
apt-get install -yqq "${PACKAGES[@]}" binutils g++ gcc
;;
*)
apt-get install -yqq "${PACKAGES[@]}"
;;