ObjFW  Diff

Differences From Artifact [0b214ac062]:

  • File .travis.yml — part of check-in [28e2425585] at 2020-07-11 21:07:21 on branch trunk — .travis.yml: Re-add devkitPro builds using Docker (user: js size: 11948) [more...]

To Artifact [159ce14eb5]:

  • File .travis.yml — part of check-in [1c89bd8063] at 2020-07-14 19:05:41 on branch trunk — .travis.yml: Properly abort on errors (user: js size: 11968) [more...]

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