2020-06-11 17:46:26 +02:00
|
|
|
set -e
|
|
|
|
#!/bin/sh
|
|
|
|
#this will hopefully download all konan dependancies that we use in the build scripts
|
|
|
|
./gradlew multiplatform-crypto-api:build
|
|
|
|
#now let's build linux deps
|
|
|
|
cd sodiumWrapper
|
2020-06-11 18:37:56 +02:00
|
|
|
./makeTvos.sh
|
2020-06-11 17:46:26 +02:00
|
|
|
#now we can do the delegated build of ios and macos libraries
|
|
|
|
cd ..
|
2020-06-13 09:51:29 +02:00
|
|
|
./gradlew multiplatform-crypto-delegated:publishTvosArm64PublicationToSnapshotRepository \
|
|
|
|
multiplatform-crypto-delegated:publishTvosX64PublicationToSnapshotRepository
|
2020-07-07 20:22:08 +02:00
|
|
|
|
|
|
|
./gradlew multiplatform-crypto-libsodium-bindings:publishTvosArm64PublicationToSnapshotRepository \
|
|
|
|
multiplatform-crypto-libsodium-bindings:publishTvosX64PublicationToSnapshotRepository
|
2020-06-11 17:46:26 +02:00
|
|
|
set +e
|