18 lines
870 B
Bash
Executable File
18 lines
870 B
Bash
Executable File
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
|
|
./makeTvos.sh
|
|
#now we can do the delegated build of ios and macos libraries
|
|
cd ..
|
|
./gradlew multiplatform-crypto-delegated:tvosArm64MainKlibrary multiplatform-crypto-delegated:tvosArm64TestKlibrary \
|
|
multiplatform-crypto-delegated:tvosX64MainKlibrary multiplatform-crypto-delegated:tvosX64TestKlibrary
|
|
./gradlew multiplatform-crypto-delegated:tvosX64Test
|
|
|
|
./gradlew multiplatform-crypto-libsodium-bindings:tvosArm64MainKlibrary multiplatform-crypto-libsodium-bindings:tvosArm64TestKlibrary \
|
|
multiplatform-crypto-libsodium-bindings:tvosX64MainKlibrary multiplatform-crypto-libsodium-bindings:tvosX64TestKlibrary
|
|
./gradlew multiplatform-crypto-libsodium-bindings:tvosX64Test
|
|
set +e
|