1
0
mirror of https://github.com/pdf2htmlEX/pdf2htmlEX.git synced 2024-12-22 13:00:08 +00:00

corrected travis 6

This commit is contained in:
Stephen Gaito 2019-11-25 22:06:17 +00:00
parent 1f25183b4c
commit 7155ed25cc
3 changed files with 53 additions and 49 deletions

View File

@ -17,33 +17,33 @@ env:
global: global:
- UNATTENDED="--assume-yes" - UNATTENDED="--assume-yes"
addons: #addons:
apt: # apt:
update: true # update: true
packages: # packages:
# build tools # # build tools
- git # - git
- pkg-config # - pkg-config
- ruby # - ruby
- autoconf # - autoconf
- libtool # - libtool
- cmake # - cmake
- make # - make
- gcc # - gcc
- g++ # - g++
- gettext # - gettext
- openjdk-8-jre-headless # - openjdk-8-jre-headless
- tree # - tree
# dev libraries # # dev libraries
- libcairo-dev # - libcairo-dev
- libspiro-dev # - libspiro-dev
- libpng-dev # - libpng-dev
- libjpeg-dev # - libjpeg-dev
- poppler-data # - poppler-data
- libpango1.0-dev # - libpango1.0-dev
- liblcms2-dev # - liblcms2-dev
- libxml2-dev # - libxml2-dev
- libuninameslist-dev # - libuninameslist-dev
# homebrew: # homebrew:
# packages: # packages:
# - autoconf # - autoconf
@ -76,6 +76,8 @@ matrix:
script: script:
- echo "$DOCKER_PASSWORD" | docker login -u "$DOCKER_USERNAME" --password-stdin - echo "$DOCKER_PASSWORD" | docker login -u "$DOCKER_USERNAME" --password-stdin
- ./buildScripts/getBuildTools || travis_terminate 1;
- ./buildScripts/getDevLibraries || travis_terminate 1;
- ./buildScripts/getPoppler || travis_terminate 1; - ./buildScripts/getPoppler || travis_terminate 1;
- ./buildScripts/buildPoppler || travis_terminate 1; - ./buildScripts/buildPoppler || travis_terminate 1;
- ./buildScripts/installPoppler || travis_terminate 1; - ./buildScripts/installPoppler || travis_terminate 1;

View File

@ -5,18 +5,19 @@
# set the bash environment variable 'UNATTENDED' to '--assume-yes' for # set the bash environment variable 'UNATTENDED' to '--assume-yes' for
# unattended use (for example in the .travis.yml script) # unattended use (for example in the .travis.yml script)
sudo apt $UNATTENDED install \ sudo apt-get update
aptitude \ sudo apt-get $UNATTENDED install \
git \ aptitude \
pkg-config \ git \
ruby \ pkg-config \
autoconf \ ruby \
libtool \ autoconf \
cmake \ libtool \
make \ cmake \
gcc \ make \
g++ \ gcc \
gettext \ g++ \
openjdk-8-jre-headless \ gettext \
openjdk-8-jre-headless \
tree tree

View File

@ -6,14 +6,15 @@
# set the bash environment variable 'UNATTENDED' to '--assume-yes' for # set the bash environment variable 'UNATTENDED' to '--assume-yes' for
# unattended use (for example in the .travis.yml script) # unattended use (for example in the .travis.yml script)
sudo apt $UNATTENDED install \ sudo apt-get update
libcairo-dev \ sudo apt-get $UNATTENDED install \
libspiro-dev \ libcairo-dev \
libpng-dev \ libspiro-dev \
libjpeg-dev \ libpng-dev \
poppler-data \ libjpeg-dev \
libpango1.0-dev \ poppler-data \
liblcms2-dev \ libpango1.0-dev \
libxml2-dev \ liblcms2-dev \
libxml2-dev \
libuninameslist-dev libuninameslist-dev