diff options
Diffstat (limited to 'Build')
-rw-r--r-- | Build/source/.travis.yml | 29 |
1 files changed, 14 insertions, 15 deletions
diff --git a/Build/source/.travis.yml b/Build/source/.travis.yml index a905db1a014..baca8aa76a8 100644 --- a/Build/source/.travis.yml +++ b/Build/source/.travis.yml @@ -51,7 +51,6 @@ env: - TL_MAKE_FLAGS="-j 2" # disable direct build, we don't need to build x86=64-linux two times -# # - os: linux # addons: # apt: @@ -86,17 +85,17 @@ matrix: -v ${TRAVIS_BUILD_DIR}:/texlive -w /texlive \ -it --rm i386/debian:jessie sh -c \ "apt-get update; apt-get install -y --no-install-recommends bash gcc g++ make perl libfontconfig-dev libx11-dev libxmu-dev libxaw7-dev build-essential ; ./Build -C" -# - os: linux -# services: docker -# env: -# - tldir=x86_64-linuxmusl -# - package=texlive-bin-x86_64-musl.tar.gz -# script: | -# docker run \ -# -e TL_MAKE_FLAGS="${TL_MAKE_FLAGS}" \ -# -v ${TRAVIS_BUILD_DIR}:/texlive -w /texlive \ -# -it --rm alpine:3.2 sh -c \ -# "apk update; apk add --no-progress bash gcc g++ make perl fontconfig-dev libx11-dev libxmu-dev libxaw-dev; ./Build -C" + - os: linux + services: docker + env: + - tldir=x86_64-linuxmusl + - package=texlive-bin-x86_64-musl.tar.gz + script: | + docker run \ + -e TL_MAKE_FLAGS="${TL_MAKE_FLAGS}" \ + -v ${TRAVIS_BUILD_DIR}:/texlive -w /texlive \ + -it --rm alpine:3.2 sh -c \ + "apk update; apk add --no-progress bash gcc g++ make perl fontconfig-dev libx11-dev libxmu-dev libxaw-dev; ./Build -C" # - os: osx # osx_image: xcode7.3 # env: @@ -105,9 +104,9 @@ matrix: # before_script: # script: ./Build -C -# somehow all binaries are always put into x86_64-pc-linux-gnu, probably because -# this is the architecture travis-ci is running on. -# Rename to the currently built architecture +# somehow all binaries are always put into x86_64-pc-linux-gnu, probably +# because this is the architecture travis-ci is running on. +# Rename to the currently built architecture. before_deploy: - if [ -n "$package" ]; then sudo mv inst/bin/* inst/bin/$tldir ; tar czvf ${package} -C inst/bin .; fi - if [ -r inst/bin/*/luahbtex ] ; then cp inst/bin/*/luahbtex luahbtex.$tldir ; fi |