gmic-qt/.travis.yml

57 lines
1.2 KiB
YAML
Raw Normal View History

2018-03-18 15:56:17 +02:00
language: cpp
git:
depth: 1
os:
- linux
branches:
only:
- master
2021-05-20 11:01:04 +03:00
- new_api
2018-03-18 15:56:17 +02:00
- devel
compiler:
- gcc
matrix:
include:
- os: linux
2021-03-25 15:04:45 +02:00
dist: bionic
2018-03-18 15:56:17 +02:00
env:
- BUILD="qmake" GMIC_HOST="all"
- os: linux
2021-03-25 15:04:45 +02:00
dist: focal
env:
- BUILD="qmake" GMIC_HOST="all"
- os: linux
dist: bionic
2018-03-18 15:56:17 +02:00
env:
- BUILD="cmake" GMIC_HOST="none"
- os: linux
2021-03-25 15:04:45 +02:00
dist: bionic
2018-03-18 15:56:17 +02:00
env:
- BUILD="cmake" GMIC_HOST="gimp"
fast_finish: true
2018-06-07 15:54:31 +03:00
2018-03-18 15:56:17 +02:00
before_install:
- date -u
- uname -a
- git clone --depth=1 https://github.com/dtschump/gmic.git gmic-clone
2018-03-18 15:56:17 +02:00
- make -C gmic-clone/src CImg.h gmic_stdlib.h
- if [ -z "$TRAVIS_OS_NAME" -o "$TRAVIS_OS_NAME" = "linux" ]; then
sudo apt-get update;
fi;
install:
- if [ -z "$TRAVIS_OS_NAME" -o "$TRAVIS_OS_NAME" = "linux" ]; then
2021-03-25 15:29:57 +02:00
sudo apt-get install --allow-unauthenticated gdb libfftw3-dev zlib1g-dev libcurl4-openssl-dev libx11-dev libgimp2.0 libgegl-dev libgimp2.0-dev qt5-default qt5-qmake qtbase5-dev qttools5-dev qttools5-dev-tools;
2018-03-18 15:56:17 +02:00
fi;
script:
- g++ --version
- if [ -z "$TRAVIS_OS_NAME" -o "$TRAVIS_OS_NAME" = "linux" ]; then
travis_wait 45 ./scripts/travis_build_${BUILD}.sh;
fi;