Revision 495dd7e86f9a0c0f20ac63eda7e936c1ec5ac014 authored by Hugh Cayless on 24 March 2020, 21:19:54 UTC, committed by Hugh Cayless on 24 March 2020, 21:19:54 UTC
2 parent s 90c1dcf + 5bf2e8c
Raw File
.travis.yml
sudo: required

language: java

services:
  - docker

# before we can run the docker image for the tests, we need to 
# * pull the docker image
# * get the current VERSION file of the stylesheets from the artifacts server
# * get the latest stylesheets zip file from the artifacts server
# * install the stylesheets within our working dir in a dedicated sub dir
before_install:
  - docker pull teic/jenkins:dev
  - curl https://jenkins.tei-c.org/view/TEI%20dev/job/Stylesheets-dev/lastSuccessfulBuild/artifact/dist/doc/tei-xsl/VERSION -o XSLVERSION
  - curl https://jenkins.tei-c.org/view/TEI%20dev/job/Stylesheets-dev/lastStableBuild/artifact/tei-xsl-`head -1 XSLVERSION`.zip -o stylesheets.zip
  - mkdir stylesheets
  - unzip stylesheets.zip -d stylesheets

script:
  - docker run --rm -w /var/tei/P5 -it -v `pwd`:/var/tei -v $TRAVIS_BUILD_DIR/stylesheets/xml/tei/stylesheet:/usr/share/xml/tei/stylesheet -u $UID --entrypoint "make" teic/jenkins:dev clean validate test

notifications:
  slack: tei-c:3IFCBSmTvNx3j1GUMDWS9Dom
back to top