From c709e56e784c6ec97907a67af252cedadedd4a82 Mon Sep 17 00:00:00 2001 From: Chris Bracken Date: Mon, 29 Jan 2018 14:59:10 -0800 Subject: [PATCH] Run clang-format checks before other phases (flutter/engine#4608) We now run clang-format checks before running licenses and other tests. Since clang-format runs quickly, this allows these diffs to be caught first, without much real delay to other checks. --- engine/src/flutter/.travis.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/engine/src/flutter/.travis.yml b/engine/src/flutter/.travis.yml index c0c69e95be1..f6f06b9245f 100644 --- a/engine/src/flutter/.travis.yml +++ b/engine/src/flutter/.travis.yml @@ -6,9 +6,9 @@ sudo: false before_script: - ./travis/setup.sh script: + - ./travis/format.sh - ./travis/build.sh - ./travis/test.sh - - ./travis/format.sh # We don't build the engine or run the tests for the engine on Travis # See testing/run_tests.sh if that's what you're looking for though.