From 6016d38608a200bfb1eff653efe906b2d3fff355 Mon Sep 17 00:00:00 2001 From: Olav Morken Date: Thu, 15 Aug 2019 08:11:54 +0200 Subject: [PATCH] Travis CI: Make script more readable Instead of listing all commands to run in a single line, split it into multiple steps. This makes it easier to read the build script, and also makes the output more readable. --- .travis.yml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index 44b9365..9c0265e 100644 --- a/.travis.yml +++ b/.travis.yml @@ -8,4 +8,8 @@ addons: - liblasso3-dev - libssl-dev -script: ./autogen.sh && ./configure CFLAGS=-Werror && make && make distfile +script: + - ./autogen.sh + - ./configure CFLAGS=-Werror + - make + - make distfile