From 2d382cc7cd6b4fe73d3533540b66ffadaa12ba29 Mon Sep 17 00:00:00 2001 From: Andrew Vagin Date: Sat, 20 Feb 2016 19:41:32 +0300 Subject: [PATCH] travis: execute build actions on the "script" step Otherwise a default actions for this step will be executed: $ ./configure && make && make test /home/travis/build.sh: line 45: ./configure: No such file or directory Signed-off-by: Andrew Vagin Signed-off-by: Pavel Emelyanov --- .travis.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index b33b79db9..772229670 100644 --- a/.travis.yml +++ b/.travis.yml @@ -7,5 +7,5 @@ env: - TR_ARCH=x86_64 - TR_ARCH=armv7hf - TR_ARCH=aarch64 -before_install: +script: - sudo make -C scripts/build $TR_ARCH