285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
|
script:
- build() {
if ! git clean -fxd >/tmp/clean_log 2>&1; then
cat /tmp/clean_log;
exit 1;
fi;
./autogen.sh;
.travis/build.sh "$@";
}
- if [ "$TRAVIS_OS_NAME" = "linux" -a -z "$config" ]; then
build_32_64() {
build OBJC="$CC" $@;
case "$TRAVIS_CPU_ARCH" in
|
|
|
|
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
|
script:
- build() {
if ! git clean -fxd >/tmp/clean_log 2>&1; then
cat /tmp/clean_log;
exit 1;
fi;
./autogen.sh || exit 1;
.travis/build.sh "$@" || exit 1;
}
- if [ "$TRAVIS_OS_NAME" = "linux" -a -z "$config" ]; then
build_32_64() {
build OBJC="$CC" $@;
case "$TRAVIS_CPU_ARCH" in
|