Revision 461ff9135157975d3a3e941f06ee03fb6a04a4a3 authored by raffazizzi on 03 September 2023, 08:25:36 UTC, committed by raffazizzi on 03 September 2023, 08:25:36 UTC
2 parent s f5bf292 + 8508013
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