Qt-Advanced-Docking-System/.travis.yml

156 lines
3.7 KiB
YAML
Raw Permalink Normal View History

2019-01-17 17:00:41 +08:00
language: cpp
# gcc is clang on mac
compiler: gcc
git:
depth: 1
matrix:
fast_finish: true
include:
- name: Ubuntu qmake Qt5.5.1
os: linux
dist: trusty
group: stable
addons:
apt:
sources:
- ubuntu-toolchain-r-test
- sourceline: 'ppa:beineri/opt-qt551-trusty'
update: true
packages:
- qt55base
- qt55tools
- gcc-6
- g++-6
- libc6-i386
script:
- PATH="/opt/qt55/bin:$PATH"
- CXX="g++-6"
- CC="gcc-6"
- qt55-env.sh
- qmake
- make
- make install
2019-01-18 16:33:11 +08:00
- name: Ubuntu qmake dll
2019-01-17 17:00:41 +08:00
os: linux
dist: xenial
group: stable
addons:
apt:
2019-01-18 16:33:11 +08:00
sources:
- ubuntu-toolchain-r-test
- sourceline: 'ppa:beineri/opt-qt-5.12.0-xenial'
update: true
2019-01-17 17:00:41 +08:00
packages:
2019-01-18 16:33:11 +08:00
- qt512base
- qt512tools
- gcc-6
- g++-6
- libc6-i386
- libgl-dev
- libgl1-mesa-dev
- mesa-common-dev
2019-01-17 17:00:41 +08:00
script:
2019-01-18 16:33:11 +08:00
- PATH="/opt/qt512/bin:$PATH"
- CXX="g++-6"
- CC="gcc-6"
- qt512-env.sh
- qmake
- make
- make install
- name: Ubuntu qmake static
2019-01-17 17:00:41 +08:00
os: linux
dist: xenial
group: stable
addons:
apt:
2019-01-18 16:33:11 +08:00
sources:
- ubuntu-toolchain-r-test
- sourceline: 'ppa:beineri/opt-qt-5.12.0-xenial'
update: true
2019-01-17 17:00:41 +08:00
packages:
2019-01-18 16:33:11 +08:00
- qt512base
- qt512tools
- gcc-6
- g++-6
- libc6-i386
- libgl-dev
- libgl1-mesa-dev
- mesa-common-dev
2019-01-17 17:00:41 +08:00
script:
2019-01-18 16:33:11 +08:00
- PATH="/opt/qt512/bin:$PATH"
- CXX="g++-6"
- CC="gcc-6"
- qt512-env.sh
- qmake "CONFIG+=adsBuildStatic"
- make
- make install
2019-01-17 17:00:41 +08:00
- name: macOS CMake dll
os: osx
osx_image: xcode10.1
addons:
homebrew:
packages:
- qt
2019-01-18 16:33:11 +08:00
update: true
2019-01-17 17:00:41 +08:00
script:
2019-01-18 16:33:11 +08:00
- PATH="/usr/local/opt/qt5/bin:$PATH"
- mkdir -p build
2019-01-17 17:00:41 +08:00
- cd build
- cmake --version
2019-01-18 16:33:11 +08:00
- cmake -G "Unix Makefiles" -DCMAKE_BUILD_TYPE=DEBUG -DCMAKE_DEBUG_POSTFIX=_debug -DBUILD_EXAMPLES=ON -DBUILD_STATIC=OFF -DCMAKE_INSTALL_PREFIX="./installed" ../
2019-01-17 17:00:41 +08:00
- cmake --build .
- cmake --build . --target install
- cmake -G "Unix Makefiles" -DCMAKE_BUILD_TYPE=RELEASE -DBUILD_EXAMPLES=ON -DBUILD_STATIC=OFF -DCMAKE_INSTALL_PREFIX="./installed" ../
- cmake --build .
- cmake --build . --target install
- name: macOS CMake static
os: osx
osx_image: xcode10.1
addons:
homebrew:
packages:
- qt
2019-01-18 16:33:11 +08:00
update: true
2019-01-17 17:00:41 +08:00
script:
2019-01-18 16:33:11 +08:00
- PATH="/usr/local/opt/qt5/bin:$PATH"
- mkdir -p build
2019-01-17 17:00:41 +08:00
- cd build
- cmake --version
2019-01-18 16:33:11 +08:00
- cmake -G "Unix Makefiles" -DCMAKE_BUILD_TYPE=DEBUG -DCMAKE_DEBUG_POSTFIX=_debug -DBUILD_EXAMPLES=ON -DBUILD_STATIC=ON -DCMAKE_INSTALL_PREFIX="./installed" ../
2019-01-17 17:00:41 +08:00
- cmake --build .
- cmake --build . --target install
- cmake -G "Unix Makefiles" -DCMAKE_BUILD_TYPE=RELEASE -DBUILD_EXAMPLES=ON -DBUILD_STATIC=ON -DCMAKE_INSTALL_PREFIX="./installed" ../
- cmake --build .
- cmake --build . --target install
2019-01-18 16:33:11 +08:00
- name: macOS qmake dll
os: osx
osx_image: xcode10.1
addons:
homebrew:
packages:
- qt
update: true
script:
- PATH="/usr/local/opt/qt5/bin:$PATH"
- qmake
- make
- make install
- name: macOS qmake static
os: osx
osx_image: xcode10.1
addons:
homebrew:
packages:
- qt
update: true
script:
- PATH="/usr/local/opt/qt5/bin:$PATH"
- qmake "CONFIG+=adsBuildStatic"
- make
- make install
2019-01-17 17:00:41 +08:00
notifications:
email: false