From 4feed0fb69300d3f1de7195637a952e6359f4a6f Mon Sep 17 00:00:00 2001 From: Evgeny Vereshchagin Date: Fri, 14 Jun 2019 21:16:41 +0200 Subject: [PATCH] travis: always run the "Build & test" stage first Now that the other stages are explicitly listed in the "stages" section, we should include "Built & test" there to make sure it's run first. --- .travis.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.travis.yml b/.travis.yml index 181ed5e4bd9..dd34e9c82ac 100644 --- a/.travis.yml +++ b/.travis.yml @@ -11,6 +11,9 @@ env: - REPO_ROOT="$TRAVIS_BUILD_DIR" stages: + - name: Build & test + if: type != cron + - name: Fuzzit-Fuzzing if: type = cron -- 2.47.3