13 lines
383 B
Bash
Executable File
13 lines
383 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
|
|
./makeMacosX86-64.sh
|
|
#now we can do the delegated build of ios and macos libraries
|
|
cd ..
|
|
|
|
./gradlew multiplatform-crypto-libsodium-bindings:publishMacosX64PublicationToSnapshotRepository
|
|
set +e
|