From 1cc50b2793302c29e3b09fd0ba5d1dbe581c6c3c Mon Sep 17 00:00:00 2001 From: tooomm Date: Sun, 19 Mar 2017 17:58:31 +0100 Subject: [PATCH] remove travis deployment to bintray (#2516) --- .travis.yml | 8 -------- CMakeLists.txt | 6 ------ cmake/bintray_deploy.json.in | 28 ---------------------------- 3 files changed, 42 deletions(-) delete mode 100644 cmake/bintray_deploy.json.in diff --git a/.travis.yml b/.travis.yml index ba7572e86..912c23cba 100644 --- a/.travis.yml +++ b/.travis.yml @@ -29,11 +29,3 @@ notifications: on_success: change on_failure: change on_start: never -deploy: - provider: bintray - file: "build/bintray_deploy.json" - user: "ctrlaltca" - key: - secure: DtVeeLoi5fZG/RvLTecRnRQGW9fVNS4Oa5iut2vJa14PdKBAJiXACQ0EzcRJFsbtby7MyMc2IVtT5skpvsaSqkpaxoBaL1YtKwJ4CTkYcm2MDWHS7UlijuxxTjI6BnaL3lcCCIeG+NHBZa3dV2YNJ1sWv6Xmiiix1ujPPW8VtnM= - on: - condition: $BUILDTYPE = Release \ No newline at end of file diff --git a/CMakeLists.txt b/CMakeLists.txt index 35c925c28..a4289c979 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -199,12 +199,6 @@ elseif(WIN32) ) endif() -# Configure file with build deployment data for travis -configure_file( - ${CMAKE_MODULE_PATH}/bintray_deploy.json.in - ${PROJECT_BINARY_DIR}/bintray_deploy.json -) - include(CPack) # Compile servatrice (default off) diff --git a/cmake/bintray_deploy.json.in b/cmake/bintray_deploy.json.in deleted file mode 100644 index 66e715c08..000000000 --- a/cmake/bintray_deploy.json.in +++ /dev/null @@ -1,28 +0,0 @@ -{ - "package": { - "name": "Cockatrice-git", - "repo": "Cockatrice", - "subject": "cockatrice", - "desc": "Cockatrice master branch automated builds", - "website_url": "https://github.com/Cockatrice/Cockatrice", - "issue_tracker_url": "https://github.com/Cockatrice/Cockatrice/issues", - "vcs_url": "https://github.com/Cockatrice/Cockatrice.git", - "github_use_tag_release_notes": true, - "github_release_notes_file": "RELEASE.txt", - "licenses": ["GPL-2.0"], - "labels": ["card", "tabletop", "game"], - "public_download_numbers": false, - "public_stats": true - }, - "version": { - "name": "@PROJECT_VERSION@", - "desc": "Unstable builds from master", - "vcs_tag": "@GIT_COMMIT_ID@", - "gpgSign": false - }, - "files": [ - { "includePattern": "build/(Cockatrice.*\\.deb)", "uploadPattern": "Ubuntu/$ENV{DIST}/$1" }, - { "includePattern": "build/(Cockatrice.*\\.dmg)", "uploadPattern": "macOS/$1" } - ], - "publish": true -}