mirror of
https://github.com/oxen-io/lokinet.git
synced 2024-10-31 09:20:21 +00:00
8c6bf31c52
* split up configure step and build step so that build steps goes all at once * update ci to use new build structure for android
11 lines
225 B
Bash
Executable File
11 lines
225 B
Bash
Executable File
#!/bin/bash
|
|
set -e
|
|
set +x
|
|
|
|
test x$NDK = x && echo "NDK env var not set"
|
|
test x$NDK = x && exit 1
|
|
root="$(readlink -f $(dirname $0)/../)"
|
|
cd "$root"
|
|
./contrib/android-configure.sh $@
|
|
make -C build-android -j ${JOBS:-$(nproc)}
|