diff options
Diffstat (limited to '')
| -rwxr-xr-x | .travis-upload.sh | 4 | ||||
| -rw-r--r-- | README.md | 2 | ||||
| -rw-r--r-- | appveyor.yml | 8 |
3 files changed, 10 insertions, 4 deletions
diff --git a/.travis-upload.sh b/.travis-upload.sh index d86775cb9..1ad8f5e5e 100755 --- a/.travis-upload.sh +++ b/.travis-upload.sh | |||
| @@ -25,6 +25,10 @@ if [ "$TRAVIS_BRANCH" = "master" ]; then | |||
| 25 | dylibbundler -b -x "${REV_NAME}/citra" -cd -d "${REV_NAME}/libs" -p "@executable_path/libs/" | 25 | dylibbundler -b -x "${REV_NAME}/citra" -cd -d "${REV_NAME}/libs" -p "@executable_path/libs/" |
| 26 | fi | 26 | fi |
| 27 | 27 | ||
| 28 | # Copy documentation | ||
| 29 | cp license.txt "$REV_NAME" | ||
| 30 | cp README.md "$REV_NAME" | ||
| 31 | |||
| 28 | ARCHIVE_NAME="${REV_NAME}.tar.xz" | 32 | ARCHIVE_NAME="${REV_NAME}.tar.xz" |
| 29 | tar -cJvf "$ARCHIVE_NAME" "$REV_NAME" | 33 | tar -cJvf "$ARCHIVE_NAME" "$REV_NAME" |
| 30 | lftp -c "open -u citra-builds,$BUILD_PASSWORD sftp://builds.citra-emu.org; set sftp:auto-confirm yes; put -O '$UPLOAD_DIR' '$ARCHIVE_NAME'" | 34 | lftp -c "open -u citra-builds,$BUILD_PASSWORD sftp://builds.citra-emu.org; set sftp:auto-confirm yes; put -O '$UPLOAD_DIR' '$ARCHIVE_NAME'" |
| @@ -15,6 +15,8 @@ For development discussion, please join us @ #citra on freenode. | |||
| 15 | 15 | ||
| 16 | ### Development | 16 | ### Development |
| 17 | 17 | ||
| 18 | Most of the development happens on GitHub. It's also where [our central repository](https://github.com/citra-emu/citra) is hosted. | ||
| 19 | |||
| 18 | If you want to contribute please take a look at the [Contributor's Guide](CONTRIBUTING.md), [TODO list](https://docs.google.com/document/d/1SWIop0uBI9IW8VGg97TAtoT_CHNoP42FzYmvG1F4QDA) and [Developer Information](https://github.com/citra-emu/citra/wiki/Developer-Information). You should as well contact any of the developers in the forum in order to know about the current state of the emulator. | 20 | If you want to contribute please take a look at the [Contributor's Guide](CONTRIBUTING.md), [TODO list](https://docs.google.com/document/d/1SWIop0uBI9IW8VGg97TAtoT_CHNoP42FzYmvG1F4QDA) and [Developer Information](https://github.com/citra-emu/citra/wiki/Developer-Information). You should as well contact any of the developers in the forum in order to know about the current state of the emulator. |
| 19 | 21 | ||
| 20 | ### Building | 22 | ### Building |
diff --git a/appveyor.yml b/appveyor.yml index 55beb7820..e82bdf0cf 100644 --- a/appveyor.yml +++ b/appveyor.yml | |||
| @@ -39,10 +39,10 @@ on_success: | |||
| 39 | # Where are these spaces coming from? Regardless, let's remove them | 39 | # Where are these spaces coming from? Regardless, let's remove them |
| 40 | $BUILD_NAME = "citra-${GITDATE}-${GITREV}-windows-amd64.7z" -replace " ","" | 40 | $BUILD_NAME = "citra-${GITDATE}-${GITREV}-windows-amd64.7z" -replace " ","" |
| 41 | $BUILD_NAME_NOQT = "citra-noqt-${GITDATE}-${GITREV}-windows-amd64.7z" -replace " ","" | 41 | $BUILD_NAME_NOQT = "citra-noqt-${GITDATE}-${GITREV}-windows-amd64.7z" -replace " ","" |
| 42 | # Zip up the build folder | 42 | # Zip up the build folder and documentation |
| 43 | 7z a $BUILD_NAME .\build\bin\release\* | 43 | 7z a $BUILD_NAME .\build\bin\release\* .\license.txt .\README.md |
| 44 | # Do a second archive with only the binaries | 44 | # Do a second archive with only the binaries (excludes dlls) and documentation |
| 45 | 7z a $BUILD_NAME_NOQT .\build\bin\release\*.exe | 45 | 7z a $BUILD_NAME_NOQT .\build\bin\release\*.exe .\license.txt .\README.md |
| 46 | 46 | ||
| 47 | 47 | ||
| 48 | # Download WinSCP and upload to server | 48 | # Download WinSCP and upload to server |