-
Notifications
You must be signed in to change notification settings - Fork 48
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
.travis.yml - initial commit to add Travis-CI support
Change-Id: I5492d1ca7eea1fa89baa42ef3048889b526fc0c6 Reviewed-on: https://codereview.kdab.com/c/kdab/KDToolBox/+/99606 Reviewed-by: Allen Winter <[email protected]>
- Loading branch information
Allen Winter
authored and
Allen Winter
committed
Jul 2, 2021
1 parent
30801e4
commit ed58a30
Showing
1 changed file
with
51 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,51 @@ | ||
env: | ||
global: | ||
- secure: "NlWO/NTPlOU6cowOMuPOvjAprXVwIjmpHHf9CoMR71E2c/eBFFKIHj10kXuyFwz2KihHAIExmo9OlGtGniNWobvIrVrabO3dsOSb6UGbPAQkzQiyQLKsDNQAZx3nMuWEKBtMsVRee6rd7/2uGTY4WB5Ot3VhrUYcN1FoRgQQ9gk=" | ||
|
||
branches: | ||
only: | ||
- master | ||
|
||
matrix: | ||
include: | ||
- os: linux | ||
dist: bionic | ||
- os: osx | ||
osx_image: xcode11.5 | ||
env: | ||
- QT_SELECT=qt5 | ||
|
||
language: cpp | ||
compiler: | ||
- gcc | ||
- clang | ||
|
||
script: | ||
- mkdir build | ||
- cd build | ||
- qmake .. | ||
- make | ||
- make check | ||
|
||
notifications: | ||
email: | ||
recipients: | ||
- [email protected] | ||
on_success: never | ||
on_failure: always | ||
|
||
dist: bionic | ||
addons: | ||
apt: | ||
update: true | ||
packages: | ||
- qt5-default | ||
- qtbase5-dev | ||
- qtbase5-dev-tools | ||
- qtbase5-private-dev | ||
- qttools5-dev | ||
- qttools5-dev-tools | ||
homebrew: | ||
update: true | ||
packages: | ||
- qt5 |