diff --git a/.travis.yml b/.travis.yml index ba7572e8..912c23cb 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 35c925c2..a4289c97 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 66e715c0..00000000 --- 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 -}