diff options
| author | 2019-07-13 21:34:40 -0400 | |
|---|---|---|
| committer | 2019-07-13 21:34:40 -0400 | |
| commit | bbc5b5d62dfd66e623494bfc67fc469eae6551c6 (patch) | |
| tree | c0d52e7abea8f65b33e1016a31495205eb8b8c1c /.ci/scripts/common | |
| parent | Merge pull request #2609 from FernandoS27/new-scan (diff) | |
| download | yuzu-bbc5b5d62dfd66e623494bfc67fc469eae6551c6.tar.gz yuzu-bbc5b5d62dfd66e623494bfc67fc469eae6551c6.tar.xz yuzu-bbc5b5d62dfd66e623494bfc67fc469eae6551c6.zip | |
Finalize Azure Pipelines Definitions
d
Diffstat (limited to '.ci/scripts/common')
| -rw-r--r-- | .ci/scripts/common/post-upload.sh | 15 | ||||
| -rw-r--r-- | .ci/scripts/common/pre-upload.sh | 6 |
2 files changed, 21 insertions, 0 deletions
diff --git a/.ci/scripts/common/post-upload.sh b/.ci/scripts/common/post-upload.sh new file mode 100644 index 000000000..bb4e9d328 --- /dev/null +++ b/.ci/scripts/common/post-upload.sh | |||
| @@ -0,0 +1,15 @@ | |||
| 1 | #!/bin/bash -ex | ||
| 2 | |||
| 3 | # Copy documentation | ||
| 4 | cp license.txt "$REV_NAME" | ||
| 5 | cp README.md "$REV_NAME" | ||
| 6 | |||
| 7 | tar $COMPRESSION_FLAGS "$ARCHIVE_NAME" "$REV_NAME" | ||
| 8 | |||
| 9 | mv "$REV_NAME" $RELEASE_NAME | ||
| 10 | |||
| 11 | 7z a "$REV_NAME.7z" $RELEASE_NAME | ||
| 12 | |||
| 13 | # move the compiled archive into the artifacts directory to be uploaded by travis releases | ||
| 14 | mv "$ARCHIVE_NAME" artifacts/ | ||
| 15 | mv "$REV_NAME.7z" artifacts/ | ||
diff --git a/.ci/scripts/common/pre-upload.sh b/.ci/scripts/common/pre-upload.sh new file mode 100644 index 000000000..3c2fc79a2 --- /dev/null +++ b/.ci/scripts/common/pre-upload.sh | |||
| @@ -0,0 +1,6 @@ | |||
| 1 | #!/bin/bash -ex | ||
| 2 | |||
| 3 | GITDATE="`git show -s --date=short --format='%ad' | sed 's/-//g'`" | ||
| 4 | GITREV="`git show -s --format='%h'`" | ||
| 5 | |||
| 6 | mkdir -p artifacts | ||