summaryrefslogtreecommitdiff
path: root/Build/source/.travis.yml
diff options
context:
space:
mode:
authorNorbert Preining <preining@logic.at>2018-01-24 04:35:06 +0000
committerNorbert Preining <preining@logic.at>2018-01-24 04:35:06 +0000
commita949ab8cc1e617d1bffe97feb9f60b1fdc218cf5 (patch)
tree260219c0d968673f41c8da181acb64d8bdc33082 /Build/source/.travis.yml
parentf5df623a3857e1b2889f1bc56862c9cd34d341f4 (diff)
try new travis which also tests alpine with musl
git-svn-id: svn://tug.org/texlive/trunk@46423 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Build/source/.travis.yml')
-rw-r--r--Build/source/.travis.yml23
1 files changed, 15 insertions, 8 deletions
diff --git a/Build/source/.travis.yml b/Build/source/.travis.yml
index 3417772c639..6fa81e01317 100644
--- a/Build/source/.travis.yml
+++ b/Build/source/.travis.yml
@@ -13,12 +13,19 @@
language: c
-before_script:
- - find . -name \*.info -exec touch '{}' \;
-
-before_install:
- - sudo apt-get -qq update
- - sudo apt-get install -y libfontconfig-dev libx11-dev libxmu-dev libxaw7-dev
-
-script: ./Build
+matrix:
+ include:
+ - os: linux
+ addons:
+ apt:
+ packages:
+ - libfontconfig-dev
+ - libx11-dev
+ - libxmu-dev
+ - libxaw7-dev
+ before_script: find . -name \*.info -exec touch '{}' \;
+ script: ./Build
+ - os: linux
+ services: docker
+ script: docker run -v ${TRAVIS_BUILD_DIR}:/texlive -w /texlive -i -t alpine:3.7 sh -c "apk update; apk add --no-progress bash find gcc g++ make perl fontconfig-dev libx11-dev libxmu-dev libxaw-dev; cd texlive; find . -name \*.info -exec touch '{}' \; ; ./Build"