diff options
| author | 2017-01-04 21:02:51 -0700 | |
|---|---|---|
| committer | 2017-01-04 21:02:51 -0700 | |
| commit | 0920950d5e2471c4ed3928a37bc9314839a96a81 (patch) | |
| tree | f04489734c078e928507d0b2cfb4066a76aad30f | |
| parent | Fix some warnings (#2399) (diff) | |
| parent | Change deploy to use github releases instead, but only for the citra-nightly ... (diff) | |
| download | yuzu-0920950d5e2471c4ed3928a37bc9314839a96a81.tar.gz yuzu-0920950d5e2471c4ed3928a37bc9314839a96a81.tar.xz yuzu-0920950d5e2471c4ed3928a37bc9314839a96a81.zip | |
Merge pull request #2405 from jroweboy/nightly-deploy
Change deploy to use github releases instead
| -rw-r--r-- | .travis.descriptor.json.in | 23 | ||||
| -rw-r--r-- | .travis.yml | 13 | ||||
| -rw-r--r-- | CMakeLists.txt | 5 | ||||
| -rw-r--r-- | appveyor.yml | 15 |
4 files changed, 14 insertions, 42 deletions
diff --git a/.travis.descriptor.json.in b/.travis.descriptor.json.in deleted file mode 100644 index fac2eee93..000000000 --- a/.travis.descriptor.json.in +++ /dev/null | |||
| @@ -1,23 +0,0 @@ | |||
| 1 | { | ||
| 2 | "package": { | ||
| 3 | "name": "nightly", | ||
| 4 | "repo": "citra", | ||
| 5 | "subject": "citra-emu", | ||
| 6 | "desc": "Build created on @BUILD_DATE@", | ||
| 7 | "website_url": "www.citra-emu.org", | ||
| 8 | "public_download_numbers": false, | ||
| 9 | "public_stats": false | ||
| 10 | }, | ||
| 11 | "version": { | ||
| 12 | "name": "nightly-@GIT_REV@", | ||
| 13 | "released": "@BUILD_DATE@", | ||
| 14 | "gpgSign": false | ||
| 15 | }, | ||
| 16 | "files": [ | ||
| 17 | { | ||
| 18 | "includePattern": "artifacts/(.*\\.tar.xz)", | ||
| 19 | "uploadPattern": "$1" | ||
| 20 | } | ||
| 21 | ], | ||
| 22 | "publish": true | ||
| 23 | } | ||
diff --git a/.travis.yml b/.travis.yml index e429f4896..66eafb6e0 100644 --- a/.travis.yml +++ b/.travis.yml | |||
| @@ -29,8 +29,11 @@ script: "./.travis-build.sh" | |||
| 29 | after_success: "./.travis-upload.sh" | 29 | after_success: "./.travis-upload.sh" |
| 30 | 30 | ||
| 31 | deploy: | 31 | deploy: |
| 32 | provider: bintray | 32 | provider: releases |
| 33 | file: "${HOME}/build/${TRAVIS_REPO_SLUG}/.travis.descriptor.json" | 33 | api_key: |
| 34 | user: citra-emu | 34 | secure: Mck15DIWaJdxDiS3aYVlM9N3G6y8VKUI1rnwII7/iolfm1s94U+tgvbheZDmT7SSbFyaGaYO/E8HrV/uZR9Vvs7ev20sHsTN1u60OTWfDIIyHs9SqjhcGbtq95m9/dMFschOYqTOR+gAs5BsxjuoeAotHdhpQEwvkO2oo5oR0zhGy45gjFnVvtcxT/IfpZBIpVgcK3aLb9zT6ekcJbSiPmEB15iLq3xXd0nFUNtEZdX3D6Veye4n5jB6n72qN8JVoKvPZAwaC2K0pZxpcGJaXDchLsw1q+4eCvdz6UJfUemeQ/uMAmjfeQ3wrzYGXe3nCM3WmX5wosCsB0mw4zYatzl3si6CZ1W+0GkV4Rwlx03dfp7v3EeFhTsXYCaXqhwuLZnWOLUik8t9vaSoFUx4nUIRwfO9kAMUJQSpLuHNO2nT01s3GxvqxzczuLQ9he5nGSi0RRodUzDwek1qUp6I4uV3gRHKz4B07YIc1i2fK88NLXjyQ0uLVZ+7Oq1+kgDp6+N7vvXXZ5qZ17tdaysSbKEE0Y8zsoXw7Rk1tPN19vrCS+TSpomNMyQyne1k+I5iZ/qkxPTLAS5qI6Utc2dL3GJdxWRAEfGNO9AIX3GV/jmmKfdcvwGsCYP8hxqs5vLYfgacw3D8NLf1941lQUwavC17jm9EV9g5G3Pn1Cp516E= |
| 35 | key: | 35 | file_glob: true |
| 36 | secure: "TqnAlO0AXxIsHGWcjEP2BVzSs26ErpGPRLMTShVfqaHBPCIfx1UtTcQltl5FVj3HdGKWjw3PgOui/XENVDTdYIwJZN0ziTwb59wcgC5agUmGZhaXMoWjBNxY5lEaSsKZfObgJRWUGaHUSS0KQo0Owlm1u4ORDwz7zagM3/hocKs=" | 36 | file: "artifacts/*.tar.xz" |
| 37 | skip_cleanup: true | ||
| 38 | on: | ||
| 39 | tags: true \ No newline at end of file | ||
diff --git a/CMakeLists.txt b/CMakeLists.txt index e232d99a4..52a1fd492 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt | |||
| @@ -253,11 +253,6 @@ get_git_head_revision(GIT_REF_SPEC GIT_REV) | |||
| 253 | git_describe(GIT_DESC --always --long --dirty) | 253 | git_describe(GIT_DESC --always --long --dirty) |
| 254 | git_branch_name(GIT_BRANCH) | 254 | git_branch_name(GIT_BRANCH) |
| 255 | 255 | ||
| 256 | # configure the bintray travis release json | ||
| 257 | string(TIMESTAMP BUILD_DATE "%Y-%m-%d") | ||
| 258 | configure_file("${CMAKE_SOURCE_DIR}/.travis.descriptor.json.in" "${CMAKE_SOURCE_DIR}/.travis.descriptor.json" @ONLY) | ||
| 259 | unset(BUILD_DATE) | ||
| 260 | |||
| 261 | set(INI_PREFIX "${CMAKE_CURRENT_SOURCE_DIR}/externals/inih") | 256 | set(INI_PREFIX "${CMAKE_CURRENT_SOURCE_DIR}/externals/inih") |
| 262 | include_directories(${INI_PREFIX}) | 257 | include_directories(${INI_PREFIX}) |
| 263 | add_subdirectory(${INI_PREFIX}) | 258 | add_subdirectory(${INI_PREFIX}) |
diff --git a/appveyor.yml b/appveyor.yml index e4e1045de..d18bb1217 100644 --- a/appveyor.yml +++ b/appveyor.yml | |||
| @@ -60,14 +60,11 @@ artifacts: | |||
| 60 | type: zip | 60 | type: zip |
| 61 | 61 | ||
| 62 | deploy: | 62 | deploy: |
| 63 | - provider: BinTray | 63 | provider: GitHub |
| 64 | username: citra-emu | 64 | auth_token: |
| 65 | api_key: | 65 | secure: "dbpsMC/MgPKWFNJCXpQl4cR8FYhepkPLjgNp/pRMktZ8oLKTqPYErfreaIxb/4P1" |
| 66 | secure: qaZZfXp5Vv9xw5EmCxKLhGnNYhiNMDCdP84l0+h6HetfmvFlvHxyohWEVokLjl7d | 66 | artifact: msvcbuild |
| 67 | subject: citra-emu | 67 | draft: false |
| 68 | repo: citra | 68 | prerelease: false |
| 69 | package: nightly | ||
| 70 | version: $(BINTRAY_VERSION) | ||
| 71 | publish: true | ||
| 72 | on: | 69 | on: |
| 73 | branch: master | 70 | branch: master |