summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorOleg Oshmyan <chortos@inbox.lv>2020-11-13 19:35:37 +0200
committerOleg Oshmyan <chortos@inbox.lv>2020-11-13 19:36:08 +0200
commit6f3eb372b74a26f105acadf32a73d80a00b99f11 (patch)
treecb3c837cdd76336c4df8573004548725c00322ee
parent2b84129d2496afe16fd5748af5ae082f171c7fd6 (diff)
downloadlibass-6f3eb372b74a26f105acadf32a73d80a00b99f11.tar.bz2
libass-6f3eb372b74a26f105acadf32a73d80a00b99f11.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