diff options
author | Norbert Preining <preining@logic.at> | 2018-01-24 06:02:05 +0000 |
---|---|---|
committer | Norbert Preining <preining@logic.at> | 2018-01-24 06:02:05 +0000 |
commit | 8da795f3b55782ebc52c0d753caab321c0cd501f (patch) | |
tree | 23463d764a1188be6e5f9d20f448124f8c8790c8 | |
parent | 21477898770bfe48b671e91b571d705bc7bdfbb8 (diff) |
try more touching to ensure yacc etc is not necessary
git-svn-id: svn://tug.org/texlive/trunk@46425 c570f23f-e606-0410-a88d-b1316a301751
-rw-r--r-- | Build/source/.travis.yml | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/Build/source/.travis.yml b/Build/source/.travis.yml index 01bce23b3f2..dc56d75cd28 100644 --- a/Build/source/.travis.yml +++ b/Build/source/.travis.yml @@ -23,9 +23,11 @@ matrix: - libx11-dev - libxmu-dev - libxaw7-dev - before_script: find . -name \*.info -exec touch '{}' \; + before_script: + - find . -name \*.info -exec touch '{}' \; + - touch $(eval echo $(find . -name \*.y -or -name \*.l | sed -e 's/\.[ly]$/.*/') ) | grep '(\.c\|\.h\|\.cc\|\.tab\.cc\|\.tab\.h)$' 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 findutils gcc g++ make perl fontconfig-dev libx11-dev libxmu-dev libxaw-dev; cd texlive; find . -name \*.info -exec touch '{}' \; ; ./Build" + script: docker run -v ${TRAVIS_BUILD_DIR}:/texlive -w /texlive -i -t alpine:3.7 sh -c "apk update; apk add --no-progress bash findutils gcc g++ make perl fontconfig-dev libx11-dev libxmu-dev libxaw-dev; cd texlive; find . -name \*.info -exec touch '{}' \; ; touch $(eval echo $(find . -name \*.y -or -name \*.l | sed -e 's/\.[ly]$/.*/') ) | grep '(\.c\|\.h\|\.cc\|\.tab\.cc\|\.tab\.h)$' ; ./Build" |