1
0
mirror of https://github.com/pdf2htmlEX/pdf2htmlEX.git synced 2024-12-22 04:50:09 +00:00

refactored travis build scripts for linux and osx work

This commit is contained in:
Stephen Gaito 2019-12-04 12:06:17 +00:00
parent 96fd4c90d6
commit 39b667404b
3 changed files with 12 additions and 2 deletions

View File

@ -82,7 +82,7 @@ jobs:
# services: # services:
# - docker # - docker
# dist: bionic # dist: bionic
# script: ./buildScripts/doItAllTravis # script: ./buildScripts/travisLinuxDoItAll
- stage: build-osx - stage: build-osx
os: os:
- osx - osx
@ -95,6 +95,7 @@ jobs:
script: script:
- pwd - pwd
- ls - ls
- pdf2htmlEX --version
# - stage: test # - stage: test
# os: # os:
# - linux # - linux

View File

@ -1,6 +1,6 @@
#!/bin/bash #!/bin/bash
# This bash script builds everyting on an TravisCI worker # This bash script builds everyting on an TravisCI Linux (Ubunutu) worker
export UNATTENDED="--assume-yes" export UNATTENDED="--assume-yes"
export MAKE_PARALLEL="-j $(nproc)" export MAKE_PARALLEL="-j $(nproc)"

View File

@ -0,0 +1,9 @@
#!/bin/bash
# This bash script builds everyting on an TravisCI Mac OSx worker
rvm use 2.6 --install --binary
brew tap pdf2htmlEX/homebrew-brewTap
brew update
brew install pdf2htmlex-new
rvm use $TRAVIS_RUBY_VERSION # optionally, switch back to the Ruby version you need.