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.
This commit is contained in:
Olav Morken 2019-08-15 08:11:54 +02:00
parent abdea2f7f0
commit 6016d38608
1 changed files with 5 additions and 1 deletions

View File

@ -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