blob: 6d1901c15f0b4e01c607148a1b87abce60fe3822 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
#!/bin/sh
# jenkins.sh
# This script is used by Jenkins to perform a complete rebuild of Altos
prefix="--prefix=/usr/local"
ANDROID_SDK="${ANDROID_SDK:-$HOME/android-sdk-linux}"
android="--with-android=$ANDROID_SDK"
echo "=== starting altos build at $(date) ==="
env
echo "======================================="
set -x
./autogen.sh $prefix $android
make -j $(nproc) clean
time make -j $(nproc)
time make -j $(nproc) fat
|