aboutsummaryrefslogtreecommitdiff
path: root/.ci/scripts/common
diff options
context:
space:
mode:
authorFlame Sage <chris062689@gmail.com>2019-07-13 21:35:37 -0400
committerGitHub <noreply@github.com>2019-07-13 21:35:37 -0400
commitb9e1db13121fae2490ddc71f49ff93127c342d86 (patch)
treed94580d1330a76e839de6e413295bf5bb4d6abe4 /.ci/scripts/common
parent4d8215827415947e66fa1a155d67079679063b34 (diff)
parentbbc5b5d62dfd66e623494bfc67fc469eae6551c6 (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.sh15
-rw-r--r--.ci/scripts/common/pre-upload.sh6
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