summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorOleg Oshmyan <chortos@inbox.lv>2020-11-13 19:35:37 +0200
committerOneric <oneric@oneric.stub>2021-02-06 18:13:36 +0100
commitc8f909c15d3320c359f27a201094a05bc8bd380a (patch)
tree73e2005e612a7be83f3dcaf0ab7093c2a81cc4e2
parent32e11587376109071c31587fc895da93939b017c (diff)
downloadlibass-c8f909c15d3320c359f27a201094a05bc8bd380a.tar.bz2
libass-c8f909c15d3320c359f27a201094a05bc8bd380a.tar.xz
Travis CI: use before_script and split commands
The sequence is before_install -> install -> before_script -> script. `install` is supposed to be the one where dependencies are installed, but apparently the apt and homebrew plugins do it earlier. I'm not sure why the docs suggest putting `apt-get install` in `before_install`, but we no longer even do that. It definitely seems like the wrong stage for `./autogen.sh` and `./configure`, even if it currently affects nothing in practice.
-rw-r--r--.travis.yml5
1 files changed, 3 insertions, 2 deletions
diff --git a/.travis.yml b/.travis.yml
index 49a2cce..3b1e81c 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -28,8 +28,9 @@ branches:
- ci
- coverity_scan
-before_install:
- - ./autogen.sh && ./configure
+before_script:
+ - ./autogen.sh
+ - ./configure
script:
- make -j4