ObjFW  Check-in [1c89bd8063]

Overview
Comment:.travis.yml: Properly abort on errors
Downloads: Tarball | ZIP archive | SQL archive
Timelines: family | ancestors | descendants | both | trunk
Files: files | file ages | folders
SHA3-256: 1c89bd8063784c4a5e0a2baef5944ff63c6944f5b15c96393446756907ddd4f0
User & Date: js on 2020-07-14 19:05:41
Other Links: manifest | tags
Context
2020-07-19
07:16
Add .github/FUNDING.yml check-in: 38ae730b61 user: js tags: trunk
2020-07-14
19:05
.travis.yml: Properly abort on errors check-in: 1c89bd8063 user: js tags: trunk
2020-07-12
17:57
Fix forwarding on SPARC/ELF for non-PIC check-in: fc5790f20c user: js tags: trunk
Changes

Modified .travis.yml from [0b214ac062] to [159ce14eb5].

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