mirror of
https://github.com/cake-tech/cake_wallet.git
synced 2024-11-17 01:37:40 +00:00
workflow and script fixes
This commit is contained in:
parent
7c5cd1959c
commit
8ef96789d4
3 changed files with 9 additions and 6 deletions
3
.github/workflows/pr_test_build.yml
vendored
3
.github/workflows/pr_test_build.yml
vendored
|
@ -109,7 +109,8 @@ jobs:
|
|||
# build mwebd:
|
||||
cd /opt/android/cake_wallet
|
||||
git clone https://github.com/ltcmweb/mwebd
|
||||
gomobile bind -target=android -androidapi 21 ./mwebd
|
||||
cd /opt/android/cake_wallet/mwebd
|
||||
gomobile bind -target=android -androidapi 21 .
|
||||
mkdir -p /opt/android/cake_wallet/cw_mweb/android/libs/
|
||||
mv ./mwebd.aar $_
|
||||
|
||||
|
|
|
@ -7,9 +7,10 @@ go install golang.org/x/mobile/cmd/gomobile@latest
|
|||
gomobile init
|
||||
# build mwebd:
|
||||
git clone https://github.com/ltcmweb/mwebd
|
||||
# go install github.com/ltcmweb/mwebd/cmd/mwebd
|
||||
cd mwebd
|
||||
gomobile bind -target=android -androidapi 21 .
|
||||
mkdir -p ../../cw_mweb/android/libs/
|
||||
mkdir -p ../../../cw_mweb/android/libs/
|
||||
mv ./mwebd.aar $_
|
||||
# cleanup:
|
||||
cd ..
|
||||
rm -rf mwebd
|
|
@ -7,9 +7,10 @@ go install golang.org/x/mobile/cmd/gomobile@latest
|
|||
gomobile init
|
||||
# build mwebd:
|
||||
git clone https://github.com/ltcmweb/mwebd
|
||||
# go install github.com/ltcmweb/mwebd/cmd/mwebd
|
||||
cd mwebd
|
||||
gomobile bind -target=ios ./mwebd
|
||||
mkdir -p ../../cw_mweb/android/libs/
|
||||
mv ./Mwebd.xcframework ../../ios/
|
||||
mkdir -p ../../../cw_mweb/android/libs/
|
||||
mv ./Mwebd.xcframework ../../../ios/
|
||||
# cleanup:
|
||||
cd ..
|
||||
rm -rf mwebd
|
Loading…
Reference in a new issue