2016-01-26 07:46:35 +00:00
sudo : required
dist : trusty
language : cpp
2017-01-11 21:06:05 +00:00
cache : ccache
2016-08-11 03:34:27 +08:00
2016-11-13 22:34:30 +00:00
# regex is for release tags
branches :
only :
- master
- /^v(\d+\.){2}\d+$/
2019-03-17 16:03:31 +01:00
stages :
- Linux
- name : "Windows Stage 1: Dependencies (OpenSSL, Qt)"
2019-06-15 10:56:34 +02:00
if : type = push OR type = cron
2019-03-17 16:03:31 +01:00
- name : "Windows Stage 2: Dependencies (other)"
2019-06-15 10:56:34 +02:00
if : type = push OR type = cron
2019-03-17 16:03:31 +01:00
- name : "Windows Stage 3: qTox"
2019-06-15 10:56:34 +02:00
if : type = push OR type = cron
2019-03-17 16:03:31 +01:00
2019-05-26 10:52:09 -04:00
env :
global :
- CIRP_GITHUB_REPO_SLUG="qTox/qTox-nightly-releases"
2019-03-17 16:03:31 +01:00
jobs :
2016-08-11 03:34:27 +08:00
include :
2017-10-14 07:55:44 -04:00
- stage : Linux
os : linux
2016-08-11 03:34:27 +08:00
env : JOB=verify-commit-format
2019-03-17 16:03:31 +01:00
script : "./.travis/$JOB.sh"
2017-10-14 07:55:44 -04:00
- stage : Linux
os : linux
2016-08-11 17:51:53 +08:00
env : JOB=build-docs DOXYGEN_CONFIG_FILE=doxygen.conf
2019-03-17 16:03:31 +01:00
script : "./.travis/$JOB.sh"
2017-10-14 07:55:44 -04:00
- stage : Linux
os : linux
2016-12-14 20:31:36 +00:00
env : JOB=build-gitstats GITSTATS_DIR=gitstats
addons :
apt :
packages :
- gitstats
2019-03-17 16:03:31 +01:00
script : "./.travis/$JOB.sh"
2016-12-14 20:31:36 +00:00
# the actual compilin'
2017-10-14 07:55:44 -04:00
- stage : Linux
os : linux
2016-08-11 03:34:27 +08:00
env : JOB=build-ubuntu-14-04
2019-03-17 16:03:31 +01:00
script : "./.travis/$JOB.sh"
2017-10-14 07:55:44 -04:00
- stage : "Windows Stage 1: Dependencies (OpenSSL, Qt)"
os : linux
# Makes the cache this job creates avaiable only to jobs with WINDOWS_BUILD_ARCH_CACHE_TRICK_VARIABLE=i686,
# making sure that i686 and x86_64 caches don't overwrite each other
env : WINDOWS_BUILD_ARCH_CACHE_TRICK_VARIABLE=i686
script : ./.travis/build-windows.sh i686 release /opt/build-windows/i686 stage1
services :
- docker
cache :
directories :
- /opt/build-windows/i686
- stage : "Windows Stage 1: Dependencies (OpenSSL, Qt)"
os : linux
env : WINDOWS_BUILD_ARCH_CACHE_TRICK_VARIABLE=x86_64
script : ./.travis/build-windows.sh x86_64 release /opt/build-windows/x86_64 stage1
services :
- docker
cache :
directories :
- /opt/build-windows/x86_64
- stage : "Windows Stage 2: Dependencies (other)"
os : linux
env : WINDOWS_BUILD_ARCH_CACHE_TRICK_VARIABLE=i686
script : ./.travis/build-windows.sh i686 release /opt/build-windows/i686 stage2
services :
- docker
cache :
directories :
- /opt/build-windows/i686
- stage : "Windows Stage 2: Dependencies (other)"
os : linux
env : WINDOWS_BUILD_ARCH_CACHE_TRICK_VARIABLE=x86_64
script : ./.travis/build-windows.sh x86_64 release /opt/build-windows/x86_64 stage2
services :
- docker
cache :
directories :
- /opt/build-windows/x86_64
- stage : "Windows Stage 3: qTox"
os : linux
env : WINDOWS_BUILD_ARCH_CACHE_TRICK_VARIABLE=i686
2019-05-26 10:52:09 -04:00
script :
- ./.travis/build-windows.sh i686 release /opt/build-windows/i686 stage3
- export ARTIFACTS_DIR="$(mktemp -d)"
- cp -a ./workspace/i686/qtox/release/{setup-qtox-i686-release.exe,setup-qtox-i686-release.exe.sha256,qtox-i686-release.zip,qtox-i686-release.zip.sha256} "$ARTIFACTS_DIR"
- .travis/cirp/cleanup1.sh
- .travis/cirp/store.sh "$ARTIFACTS_DIR"
- .travis/cirp/cleanup2.sh
2017-10-14 07:55:44 -04:00
services :
- docker
cache :
directories :
- /opt/build-windows/i686
- stage : "Windows Stage 3: qTox"
os : linux
env : WINDOWS_BUILD_ARCH_CACHE_TRICK_VARIABLE=x86_64
2019-05-26 10:52:09 -04:00
script :
- ./.travis/build-windows.sh x86_64 release /opt/build-windows/x86_64 stage3
- export ARTIFACTS_DIR="$(mktemp -d)"
- cp -a ./workspace/x86_64/qtox/release/{setup-qtox-x86_64-release.exe,setup-qtox-x86_64-release.exe.sha256,qtox-x86_64-release.zip,qtox-x86_64-release.zip.sha256} "$ARTIFACTS_DIR"
- .travis/cirp/cleanup1.sh
- .travis/cirp/store.sh "$ARTIFACTS_DIR"
- .travis/cirp/cleanup2.sh
2017-10-14 07:55:44 -04:00
services :
- docker
cache :
directories :
- /opt/build-windows/x86_64
- stage : "Windows Stage 3: qTox"
os : linux
env : WINDOWS_BUILD_ARCH_CACHE_TRICK_VARIABLE=i686
2019-05-26 10:52:09 -04:00
script :
- ./.travis/build-windows.sh i686 debug /opt/build-windows/i686 stage3
- export ARTIFACTS_DIR="$(mktemp -d)"
- cp -a ./workspace/i686/qtox/debug/{qtox-i686-debug.zip,qtox-i686-debug.zip.sha256} "$ARTIFACTS_DIR"
- .travis/cirp/cleanup1.sh
- .travis/cirp/store.sh "$ARTIFACTS_DIR"
- .travis/cirp/cleanup2.sh
2017-10-14 07:55:44 -04:00
services :
- docker
cache :
directories :
- /opt/build-windows/i686
- stage : "Windows Stage 3: qTox"
os : linux
env : WINDOWS_BUILD_ARCH_CACHE_TRICK_VARIABLE=x86_64
2019-05-26 10:52:09 -04:00
script :
- ./.travis/build-windows.sh x86_64 debug /opt/build-windows/x86_64 stage3
- export ARTIFACTS_DIR="$(mktemp -d)"
- cp -a ./workspace/x86_64/qtox/debug/{qtox-x86_64-debug.zip,qtox-x86_64-debug.zip.sha256} "$ARTIFACTS_DIR"
- .travis/cirp/cleanup1.sh
- .travis/cirp/store.sh "$ARTIFACTS_DIR"
- .travis/cirp/cleanup2.sh
2017-10-14 07:55:44 -04:00
services :
- docker
cache :
directories :
- /opt/build-windows/x86_64
2018-05-06 13:52:49 +02:00
- stage : "macOS, AppImage and Flatpak"
2017-10-14 07:55:44 -04:00
os : osx
2018-10-21 22:55:19 +02:00
osx_image : xcode9.2
2016-08-11 03:34:27 +08:00
env : JOB=build-osx
2019-03-17 18:09:12 +01:00
cache :
2019-03-23 12:01:40 +01:00
timeout : 300 # seconds
2019-03-17 18:09:12 +01:00
ccache : true
directories :
- $HOME/Library/Caches/Homebrew
before_cache :
- brew cleanup
2019-05-26 10:52:09 -04:00
script :
- "./.travis/$JOB.sh"
- export ARTIFACTS_DIR="$(mktemp -d)"
- cp -a ./{qTox.dmg,qTox.dmg.sha256} "$ARTIFACTS_DIR"
- .travis/cirp/cleanup1.sh
- .travis/cirp/store.sh "$ARTIFACTS_DIR"
- .travis/cirp/cleanup2.sh
2018-05-06 13:52:49 +02:00
- stage : "macOS, AppImage and Flatpak"
2018-04-14 12:22:49 +02:00
os : linux
2018-05-08 22:26:17 +02:00
env : JOB=APPIMAGE
2019-05-26 10:52:09 -04:00
script :
- ./appimage/build-appimage.sh
- export ARTIFACTS_DIR="$(mktemp -d)"
- cp -a ./output/* "$ARTIFACTS_DIR"
- .travis/cirp/cleanup1.sh
- .travis/cirp/store.sh "$ARTIFACTS_DIR"
- .travis/cirp/cleanup2.sh
2018-04-14 12:22:49 +02:00
services :
- docker
2018-05-06 13:52:49 +02:00
- stage : "macOS, AppImage and Flatpak"
os : linux
env : JOB=FLATPAK
2019-05-26 10:52:09 -04:00
script :
- ./flatpak/build-flatpak.sh
- export ARTIFACTS_DIR="$(mktemp -d)"
- cp -a ./output/* "$ARTIFACTS_DIR"
- .travis/cirp/cleanup1.sh
- .travis/cirp/store.sh "$ARTIFACTS_DIR"
- .travis/cirp/cleanup2.sh
2018-05-06 13:52:49 +02:00
services :
- docker
2019-05-26 10:52:09 -04:00
- stage : "Nightly publishing"
if : type == cron
script :
- export ARTIFACTS_DIR="$(mktemp -d)"
- .travis/cirp/collect.sh "$ARTIFACTS_DIR"
- .travis/cirp/cleanup4.sh
- .travis/cirp/publish.sh "$ARTIFACTS_DIR"
- .travis/cirp/cleanup5.sh
cache :
directories :
- /opt/cirp
2016-08-11 03:34:27 +08:00
2019-03-17 16:03:31 +01:00
2016-07-03 11:41:21 +01:00
2016-05-28 19:21:53 -04:00
deploy :
2018-05-08 22:26:17 +02:00
# Linux AppImage
- provider : releases
api_key :
secure : "BRbzTWRvadALRQSTihMKruOj64ydxusMUS9FQR//qFlS345ZYfYta43W//4LcWWDKtj6IvA6DRqNdabgWnpbpxpnm9gVftGUdOKlU3niPZhwsMkB2M12QHUnAP6DVOfGPvdciBV+6mu73SSxniEcrYjZ1CrRX7mknmehPpVKxNk="
2018-07-04 00:54:31 +02:00
file_glob : true
file : ./output/*
2018-05-08 22:26:17 +02:00
on :
condition : $JOB == APPIMAGE
repo : qTox/qTox
tags : true
skip_cleanup : true
2018-07-04 01:00:04 +02:00
# Linux Flatpak
- provider : releases
api_key :
secure : "BRbzTWRvadALRQSTihMKruOj64ydxusMUS9FQR//qFlS345ZYfYta43W//4LcWWDKtj6IvA6DRqNdabgWnpbpxpnm9gVftGUdOKlU3niPZhwsMkB2M12QHUnAP6DVOfGPvdciBV+6mu73SSxniEcrYjZ1CrRX7mknmehPpVKxNk="
file_glob : true
file : ./output/*
on :
condition : $JOB == FLATPAK
repo : qTox/qTox
tags : true
skip_cleanup : true
2016-12-08 02:16:26 +00:00
# osx binary
2017-02-05 13:11:13 +00:00
- provider : releases
api_key :
secure : "BRbzTWRvadALRQSTihMKruOj64ydxusMUS9FQR//qFlS345ZYfYta43W//4LcWWDKtj6IvA6DRqNdabgWnpbpxpnm9gVftGUdOKlU3niPZhwsMkB2M12QHUnAP6DVOfGPvdciBV+6mu73SSxniEcrYjZ1CrRX7mknmehPpVKxNk="
file : "./qTox.dmg"
2019-01-18 15:00:35 +01:00
file : "./qTox.dmg.sha256"
2017-02-05 13:11:13 +00:00
on :
condition : $TRAVIS_OS_NAME == osx
repo : qTox/qTox
tags : true
skip_cleanup : true
2016-08-11 00:19:20 +08:00
2018-03-18 14:37:30 +01:00
# Windows Installer 64Bit
- provider : releases
api_key :
secure : "BRbzTWRvadALRQSTihMKruOj64ydxusMUS9FQR//qFlS345ZYfYta43W//4LcWWDKtj6IvA6DRqNdabgWnpbpxpnm9gVftGUdOKlU3niPZhwsMkB2M12QHUnAP6DVOfGPvdciBV+6mu73SSxniEcrYjZ1CrRX7mknmehPpVKxNk="
file : "./workspace/x86_64/qtox/release/setup-qtox-x86_64-release.exe"
2019-01-18 14:45:10 +01:00
file : "./workspace/x86_64/qtox/release/setup-qtox-x86_64-release.exe.sha256"
2018-03-18 14:37:30 +01:00
on :
condition : $WINDOWS_BUILD_ARCH_CACHE_TRICK_VARIABLE == x86_64 && -f /home/travis/build/qTox/qTox/stage3 && -f /home/travis/build/qTox/qTox/release
repo : qTox/qTox
tags : true
skip_cleanup : true
# Windows Installer 32Bit
- provider : releases
api_key :
secure : "BRbzTWRvadALRQSTihMKruOj64ydxusMUS9FQR//qFlS345ZYfYta43W//4LcWWDKtj6IvA6DRqNdabgWnpbpxpnm9gVftGUdOKlU3niPZhwsMkB2M12QHUnAP6DVOfGPvdciBV+6mu73SSxniEcrYjZ1CrRX7mknmehPpVKxNk="
2018-04-19 13:20:26 -07:00
file : "./workspace/i686/qtox/release/setup-qtox-i686-release.exe"
2019-01-18 14:45:10 +01:00
file : "./workspace/i686/qtox/release/setup-qtox-i686-release.exe.sha256"
2018-03-18 14:37:30 +01:00
on :
condition : $WINDOWS_BUILD_ARCH_CACHE_TRICK_VARIABLE == i686 && -f /home/travis/build/qTox/qTox/stage3 && -f /home/travis/build/qTox/qTox/release
repo : qTox/qTox
tags : true
skip_cleanup : true
2016-12-08 02:16:26 +00:00
# branch for windows jenkins build
2017-02-05 13:11:13 +00:00
- provider : script
script : .travis/deploy-jenkins-branch.sh
on :
tags : true
skip_cleanup : true
2016-12-08 02:16:26 +00:00
2016-08-11 00:19:20 +08:00
after_success :
2016-12-17 17:47:55 +00:00
- >
test $TRAVIS_PULL_REQUEST == "false"
&& test $TRAVIS_BRANCH == "master"
&& test $JOB == "build-docs"
&& bash ./.travis/deploy-docs.sh
- >
test $TRAVIS_PULL_REQUEST == "false"
&& test $TRAVIS_BRANCH == "master"
&& test $JOB == "build-gitstats"
&& bash ./.travis/deploy-gitstats.sh