mirror of
https://github.com/cake-tech/cake_wallet.git
synced 2025-04-17 18:01:54 +00:00
fix some build issues
This commit is contained in:
parent
a597ab48ab
commit
fc213d6f2f
2 changed files with 4 additions and 5 deletions
2
.github/workflows/pr_test_build_android.yml
vendored
2
.github/workflows/pr_test_build_android.yml
vendored
|
@ -59,7 +59,7 @@ jobs:
|
|||
- name: Install package dependencies
|
||||
run: |
|
||||
sudo apt update
|
||||
sudo apt-get install -y curl unzip automake build-essential file pkg-config git python libtool libtinfo5 cmake clang
|
||||
sudo apt-get install -y curl unzip automake build-essential file pkg-config git python libtool libtinfo5 cmake clang llvm
|
||||
|
||||
|
||||
- name: Clone Repo
|
||||
|
|
|
@ -7,7 +7,6 @@ set -x -e
|
|||
cd "$(dirname "$0")"
|
||||
|
||||
NPROC="-j$(nproc)"
|
||||
|
||||
if [[ "x$(uname)" == "xDarwin" ]];
|
||||
then
|
||||
USE_DOCKER="ON"
|
||||
|
@ -38,13 +37,13 @@ else
|
|||
for COIN in monero wownero zano;
|
||||
do
|
||||
pushd ../monero_c
|
||||
[[ ! "x$BUILD_ONLY_AARCH64" == "x" ]] && env -i ./build_single.sh ${COIN} x86_64-linux-android $NPROC
|
||||
[[ ! "x$BUILD_ONLY_AARCH64" == "x" ]] && ./build_single.sh ${COIN} x86_64-linux-android $NPROC
|
||||
[[ ! "x$REMOVE_CACHES" == "x" ]] && rm -rf ${COIN}/contrib/depends/x86_64-linux-android
|
||||
# ./build_single.sh ${COIN} i686-linux-android $NPROC
|
||||
# [[ ! "x$REMOVE_CACHES" == "x" ]] && rm -rf ${COIN}/contrib/depends/i686-linux-android
|
||||
[[ ! "x$BUILD_ONLY_AARCH64" == "x" ]] && env -i ./build_single.sh ${COIN} armv7a-linux-androideabi $NPROC
|
||||
[[ ! "x$BUILD_ONLY_AARCH64" == "x" ]] && ./build_single.sh ${COIN} armv7a-linux-androideabi $NPROC
|
||||
[[ ! "x$REMOVE_CACHES" == "x" ]] && rm -rf ${COIN}/contrib/depends/armv7a-linux-androideabi
|
||||
env -i ./build_single.sh ${COIN} aarch64-linux-android $NPROC
|
||||
./build_single.sh ${COIN} aarch64-linux-android $NPROC
|
||||
[[ ! "x$REMOVE_CACHES" == "x" ]] && rm -rf ${COIN}/contrib/depends/aarch64-linux-android
|
||||
|
||||
popd
|
||||
|
|
Loading…
Reference in a new issue