Use make directly when publishing, also clean before building
This commit is contained in:
parent
6f28cb93f7
commit
abcb25e333
@ -1,15 +1,15 @@
|
||||
set -e
|
||||
#!/bin/sh
|
||||
#this will hopefully download all konan dependancies that we use in the build scripts
|
||||
|
||||
./gradlew clean
|
||||
./gradlew multiplatform-crypto-api:build
|
||||
cd sodiumWrapper
|
||||
echo "Starting mingw libsodium build"
|
||||
./configureMingw64.sh
|
||||
echo "Configure done"
|
||||
$GNU_MAKE -j4 -C libsodium clean
|
||||
$GNU_MAKE -j4 -C libsodium
|
||||
$GNU_MAKE -j4 -C libsodium install
|
||||
make -j4 -C libsodium clean
|
||||
make -j4 -C libsodium
|
||||
make -j4 -C libsodium install
|
||||
echo "completed libsodium build"
|
||||
#now we can do the delegated build
|
||||
cd ..
|
||||
|
@ -1,8 +1,8 @@
|
||||
set -e
|
||||
#!/bin/sh
|
||||
#this will hopefully download all konan dependancies that we use in the build scripts
|
||||
|
||||
./gradlew clean
|
||||
./gradlew multiplatform-crypto-api:build
|
||||
./gradlew multiplatform-crypto:build
|
||||
./gradlew multiplatform-crypto:publishMingwX64PublicationToSnapshotRepository
|
||||
set +e
|
||||
set +e
|
||||
|
Loading…
x
Reference in New Issue
Block a user