From f9dac85dfc86720a55739f61a9c18657977ce22a Mon Sep 17 00:00:00 2001 From: Josh Matthews Date: Tue, 22 Aug 2017 11:30:26 -0700 Subject: [PATCH 1/2] Move fast checks into earlier Travis task. --- .travis.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.travis.yml b/.travis.yml index e51189443e0..c051145c688 100644 --- a/.travis.yml +++ b/.travis.yml @@ -7,6 +7,9 @@ matrix: script: - ./mach test-tidy --no-progress --all - ./mach test-tidy --no-progress --self-test + - bash etc/ci/check_no_panic.sh + - bash etc/ci/lockfile_changed.sh + - bash etc/ci/manifest_changed.sh cache: false - sudo: 9000 dist: trusty @@ -17,9 +20,6 @@ matrix: - ./mach clean - ./mach build-geckolib - ./mach test-stylo - - bash etc/ci/check_no_panic.sh - - bash etc/ci/lockfile_changed.sh - - bash etc/ci/manifest_changed.sh cache: directories: - .cargo From 39f98a0476189361e6e41e6a8546b373af56396b Mon Sep 17 00:00:00 2001 From: Josh Matthews Date: Tue, 22 Aug 2017 11:38:43 -0700 Subject: [PATCH 2/2] Move lockfile check after builds complete. --- .travis.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index c051145c688..466f47c8c7c 100644 --- a/.travis.yml +++ b/.travis.yml @@ -8,7 +8,6 @@ matrix: - ./mach test-tidy --no-progress --all - ./mach test-tidy --no-progress --self-test - bash etc/ci/check_no_panic.sh - - bash etc/ci/lockfile_changed.sh - bash etc/ci/manifest_changed.sh cache: false - sudo: 9000 @@ -20,6 +19,7 @@ matrix: - ./mach clean - ./mach build-geckolib - ./mach test-stylo + - bash etc/ci/lockfile_changed.sh cache: directories: - .cargo