diff options
| author | Flame Sage <chris062689@gmail.com> | 2019-07-13 21:35:37 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2019-07-13 21:35:37 -0400 |
| commit | b9e1db13121fae2490ddc71f49ff93127c342d86 (patch) | |
| tree | d94580d1330a76e839de6e413295bf5bb4d6abe4 /.ci/scripts/common | |
| parent | 4d8215827415947e66fa1a155d67079679063b34 (diff) | |
| parent | bbc5b5d62dfd66e623494bfc67fc469eae6551c6 (diff) | |
Merge pull request #2730 from DarkLordZach/master
Finalize Azure Pipelines Definitions
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 @@ +#!/bin/bash -ex + +# Copy documentation +cp license.txt "$REV_NAME" +cp README.md "$REV_NAME" + +tar $COMPRESSION_FLAGS "$ARCHIVE_NAME" "$REV_NAME" + +mv "$REV_NAME" $RELEASE_NAME + +7z a "$REV_NAME.7z" $RELEASE_NAME + +# move the compiled archive into the artifacts directory to be uploaded by travis releases +mv "$ARCHIVE_NAME" artifacts/ +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 @@ +#!/bin/bash -ex + +GITDATE="`git show -s --date=short --format='%ad' | sed 's/-//g'`" +GITREV="`git show -s --format='%h'`" + +mkdir -p artifacts |
