blob: 3417772c6395d0e861a63dd01bcae102211fe02e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
# .travis.yml for texlive-source CI building
# Norbert Preining
# Public Domain
#
# This file controls CI testing on Travis-CI
# https://travis-ci.org/TeX-Live/texlive-source/
# via a git-svn checkout of the TeX Live source directory
# which is pushed to Github
# https://github.com/TeX-Live/texlive-source
# The cron job that does the git svn up and git push is
# running on texlive.info
#
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
|