Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Travis: update config for dpl v2 #3853

Merged
merged 4 commits into from Nov 5, 2019
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
13 changes: 7 additions & 6 deletions .travis.yml
@@ -1,10 +1,11 @@
os: linux
language: cpp
compiler: gcc

git:
depth: 15

matrix:
jobs:
include:

#Static Code Analysis
Expand All @@ -18,6 +19,7 @@ matrix:
#Ubuntu Bionic (on Docker)
- name: Ubuntu Bionic (Debug + Tests)
if: tag IS NOT present
os: linux
services: docker
env: NAME=UbuntuBionic
cache:
Expand All @@ -31,6 +33,7 @@ matrix:

- name: Ubuntu Bionic (Release)
if: (branch = master AND NOT type = pull_request) OR tag IS present
os: linux
services: docker
env: NAME=UbuntuBionic
cache:
Expand Down Expand Up @@ -132,11 +135,10 @@ matrix:
deploy:
# Deploy configuration for "beta" releases
- provider: releases
api_key:
token:
secure: mLMF41q7xgOR1sjczsilEy7HQis2PkZCzhfOGbn/8FoOQnmmPOZjrsdhn06ZSl3SFsbfCLuClDYXAbFscQmdgjcGN5AmHV+JYfW650QEuQa/f4/lQFsVRtEqUA1O3FQ0OuRxdpCfJubZBdFVH8SbZ93GLC5zXJbkWQNq+xCX1fU=
skip_cleanup: true
name: "Cockatrice $TRAVIS_TAG"
body: "Beta release of Cockatrice"
release_notes: "Beta release of Cockatrice"
file_glob: true
file: "build/Cockatrice-*"
overwrite: true
Expand All @@ -149,9 +151,8 @@ deploy:

# Deploy configuration for "stable" releases
- provider: releases
api_key:
token:
secure: mLMF41q7xgOR1sjczsilEy7HQis2PkZCzhfOGbn/8FoOQnmmPOZjrsdhn06ZSl3SFsbfCLuClDYXAbFscQmdgjcGN5AmHV+JYfW650QEuQa/f4/lQFsVRtEqUA1O3FQ0OuRxdpCfJubZBdFVH8SbZ93GLC5zXJbkWQNq+xCX1fU=
skip_cleanup: true
file_glob: true
file: "build/Cockatrice-*"
overwrite: true
Expand Down