pdf2htmlEX/.travis.yml

76 lines
2.4 KiB
YAML
Raw Normal View History

2013-01-25 00:00:50 +00:00
language: cpp
2019-11-26 08:43:41 +00:00
# for windows *test* of AppImage
# see https://docs.travis-ci.com/user/build-matrix/#using-different-programming-languages-per-job
# and https://discourse.appimage.org/t/run-appimage-on-windows/177
# and https://docs.travis-ci.com/user/reference/windows/
# why fuse is not possible on windows: https://superuser.com/questions/179436/is-it-possible-to-use-fuse-with-windows
2019-09-30 09:15:59 +00:00
compiler: gcc
2019-11-27 12:24:03 +00:00
branches:
except: # do not build tags that we create using the upload.sh script
- /^(?i:continuous.*)$/
2020-06-02 10:47:40 +00:00
#matrix:
# fast_finish: true
2019-09-30 09:15:59 +00:00
# allow_failures:
# - os: osx # Until the build passes, then re-enable.
jobs:
2020-06-02 10:47:40 +00:00
fast_finish: true
include:
2020-06-02 13:28:36 +00:00
# - stage: build-linux
# os: linux
# env:
# global: DOCKER_FROM="ubuntu:18.04"
# services:
# - docker
# dist: bionic
# script: ./buildScripts/travisLinuxAptDoItAll
- stage: build-osx
os:
- osx
osx_image: xcode10.1
addons:
homebrew:
update: true
2020-06-02 14:02:30 +00:00
packages:
# taken from getBuildToolsLinuxBrew
- git
- pkg-config
- ruby
- autoconf
- libtool
- cmake
- make
- gcc
- gettext
- openjdk
- jq
- tree
# taken from getDevLibrariesBrew
- cairo
- libpng
- jpeg
- libxml2
2020-06-02 13:28:36 +00:00
script:
- ./buildScripts/travisHomeBrewDoItAll
2020-06-02 10:47:40 +00:00
# - pdf2htmlEX --version
2019-12-03 18:36:56 +00:00
# - stage: test
# os:
# - linux
2019-11-28 12:04:22 +00:00
#- osx
#- windows
2019-12-03 18:36:56 +00:00
# script: ./testScripts/doItAllTravis
2019-11-27 08:50:34 +00:00
#deploy:
# provider: releases
# api_key:
# secure: ALWKAkgeLSPS4ULyTtxU50ZmSICEafCirCQ1YmuVTqe9nrc8E9Jm+4QaBlab5k6v90EpzNvZBnMOiT8cT1Wp2lqJzcGdGMcG49mhRvirdYhXgWuHYnygVgkxEhgejXcQaEiaGPDV3Y1k9MuiAVr8ApjUvIMlY4Hg1y0r7/rqR2fYmen+f+6a87bp5PptwakC9bfoYb92651d0TbugFfKT6TGKlE2jGlQ6On1alzLQ2DXA8coUjwpp4NcDD8OhnYGN/VZWkqckaBrMrHwjJ5FTfy5MGBOqCLzNix8sCGLEeCKkKC8J0nniNJ7+KOu9LJ2uIezKYfaUOJV0kik7F9ErvxjbfSRieako2yaSOR8X39aicTtpbyoXPRSKDU4WYX56vt4Dx7aNrYtP5b/UwWGXZa9MK7rNGJ+hiMDO1AzuyXirzR4RaJXCyC8n5W9ahBZBHCMqd5gMg5sMGPNj3Rgt34+R+nGYssum5wvr+6IKNl57sIoZFCgqviBrw2gJOCqlgOcEk/4ZSehWnXPCk6Gzxvkqkt/dmp8pJLNyvMaWcEZ6CXNHDU8MZS7bASo8Z7eAYvmX0MMjVty8J47expVaJ8M3OFHu6lE6tU8wwfd+Igr2TlWcixqaa3hDMgS+ghwdiZbYuMdR1AyZnEqK3xwvXXPPXrqRsB9xHtczLibkjY=
# file: pdf2htmlEX-newBuildSystem-x86_64.AppImage
# skip_cleanup: true
# on:
# tags: true
# repo: stephengaito/pdf2htmlEX
2019-11-26 17:13:58 +00:00