2019-05-16 13:41:32 -04:00
|
|
|
#!/bin/bash
|
|
|
|
|
2021-10-01 12:47:10 -04:00
|
|
|
set -e
|
|
|
|
|
|
|
|
if [[ "${SHOULD_BUILD}" != "yes" ]]; then
|
2019-05-16 13:41:32 -04:00
|
|
|
echo "Will not update version JSON because we did not build"
|
|
|
|
exit
|
|
|
|
fi
|
|
|
|
|
2021-10-01 12:47:10 -04:00
|
|
|
if [[ -z "${GITHUB_TOKEN}" ]]; then
|
|
|
|
echo "Will not update version JSON because no GITHUB_TOKEN defined"
|
|
|
|
exit
|
|
|
|
fi
|
|
|
|
|
2019-05-16 13:41:32 -04:00
|
|
|
# {
|
|
|
|
# "url": "https://az764295.vo.msecnd.net/stable/51b0b28134d51361cf996d2f0a1c698247aeabd8/VSCode-darwin-stable.zip",
|
|
|
|
# "name": "1.33.1",
|
|
|
|
# "version": "51b0b28134d51361cf996d2f0a1c698247aeabd8",
|
|
|
|
# "productVersion": "1.33.1",
|
|
|
|
# "hash": "cb4109f196d23b9d1e8646ce43145c5bb62f55a8",
|
|
|
|
# "timestamp": 1554971059007,
|
|
|
|
# "sha256hash": "ac2a1c8772501732cd5ff539a04bb4dc566b58b8528609d2b34bbf970d08cf01"
|
|
|
|
# }
|
|
|
|
|
|
|
|
# `url` is URL_BASE + filename of asset e.g.
|
2021-08-27 10:01:17 -04:00
|
|
|
# darwin: https://github.com/VSCodium/vscodium/releases/download/${MS_TAG}/VSCodium-darwin-${MS_TAG}.zip
|
|
|
|
# `name` is $MS_TAG
|
|
|
|
# `version` is $MS_COMMIT
|
|
|
|
# `productVersion` is $MS_TAG
|
2019-05-16 13:41:32 -04:00
|
|
|
# `hash` in <filename>.sha1
|
|
|
|
# `timestamp` is $(node -e 'console.log(Date.now())')
|
|
|
|
# `sha256hash` in <filename>.sha256
|
|
|
|
|
2021-10-01 12:47:10 -04:00
|
|
|
URL_BASE="https://github.com/VSCodium/vscodium/releases/download/${MS_TAG}"
|
2019-05-16 13:41:32 -04:00
|
|
|
|
2019-05-17 22:47:03 -04:00
|
|
|
# to make testing on forks easier
|
2021-01-12 15:01:29 -05:00
|
|
|
VERSIONS_REPO="${GITHUB_USERNAME}/versions"
|
2021-10-01 12:47:10 -04:00
|
|
|
echo "Versions repo: ${VERSIONS_REPO}"
|
2019-05-17 22:47:03 -04:00
|
|
|
|
|
|
|
generateJson() {
|
2021-10-01 12:47:10 -04:00
|
|
|
JSON_DATA="{}"
|
2019-05-17 22:47:03 -04:00
|
|
|
|
|
|
|
# generate parts
|
2021-10-01 12:47:10 -04:00
|
|
|
local url="${URL_BASE}/${ASSET_NAME}"
|
|
|
|
local name="${MS_TAG}"
|
|
|
|
local version="${MS_COMMIT}"
|
|
|
|
local productVersion="${MS_TAG}"
|
2019-05-17 22:47:03 -04:00
|
|
|
local timestamp=$(node -e 'console.log(Date.now())')
|
|
|
|
|
2021-10-01 12:47:10 -04:00
|
|
|
if [[ ! -f "artifacts/${ASSET_NAME}" ]]; then
|
|
|
|
echo "Downloading artifact '${ASSET_NAME}'"
|
|
|
|
gh release download "${MS_TAG}" --dir "artifacts" --pattern "${ASSET_NAME}*"
|
|
|
|
fi
|
|
|
|
|
|
|
|
local sha1hash=$(cat "artifacts/${ASSET_NAME}.sha1" | awk '{ print $1 }')
|
|
|
|
local sha256hash=$(cat "artifacts/${ASSET_NAME}.sha256" | awk '{ print $1 }')
|
2019-05-17 22:47:03 -04:00
|
|
|
|
|
|
|
# check that nothing is blank (blank indicates something awry with build)
|
|
|
|
for key in url name version productVersion sha1hash timestamp sha256hash; do
|
2021-10-01 12:47:10 -04:00
|
|
|
if [[ -z "${key}" ]]; then
|
|
|
|
echo "Variable '${key}' is empty; exiting..."
|
2019-05-17 22:47:03 -04:00
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
done
|
|
|
|
|
|
|
|
# generate json
|
2021-10-01 12:47:10 -04:00
|
|
|
JSON_DATA=$(jq \
|
2019-05-17 22:47:03 -04:00
|
|
|
--arg url "${url}" \
|
|
|
|
--arg name "${name}" \
|
|
|
|
--arg version "${version}" \
|
|
|
|
--arg productVersion "${productVersion}" \
|
|
|
|
--arg hash "${sha1hash}" \
|
|
|
|
--arg timestamp "${timestamp}" \
|
|
|
|
--arg sha256hash "${sha256hash}" \
|
|
|
|
'. | .url=$url | .name=$name | .version=$version | .productVersion=$productVersion | .hash=$hash | .timestamp=$timestamp | .sha256hash=$sha256hash' \
|
|
|
|
<<<'{}')
|
|
|
|
}
|
|
|
|
|
|
|
|
updateLatestVersion() {
|
2021-10-01 12:47:10 -04:00
|
|
|
echo "Generating ${VERSION_PATH}/latest.json"
|
2019-05-17 22:47:03 -04:00
|
|
|
|
2021-10-01 12:47:10 -04:00
|
|
|
generateJson
|
|
|
|
|
|
|
|
cd versions
|
2019-05-17 22:47:03 -04:00
|
|
|
|
|
|
|
# create/update the latest.json file in the correct location
|
2021-10-01 12:47:10 -04:00
|
|
|
mkdir -p "${VERSION_PATH}"
|
|
|
|
echo "${JSON_DATA}" > "${VERSION_PATH}/latest.json"
|
2019-05-17 22:47:03 -04:00
|
|
|
|
|
|
|
cd ..
|
|
|
|
}
|
|
|
|
|
|
|
|
# init versions repo for later commiting + pushing the json file to it
|
|
|
|
# thank you https://www.vinaygopinath.me/blog/tech/commit-to-master-branch-on-github-using-travis-ci/
|
2021-10-01 12:47:10 -04:00
|
|
|
git clone "https://github.com/${VERSIONS_REPO}.git"
|
2019-05-17 22:47:03 -04:00
|
|
|
cd versions
|
2019-07-09 18:25:17 -04:00
|
|
|
git config user.email "vscodium-ci@not-real.com"
|
|
|
|
git config user.name "VSCodium CI"
|
2019-05-17 22:47:03 -04:00
|
|
|
git remote rm origin
|
2021-10-01 12:47:10 -04:00
|
|
|
git remote add origin "https://${GITHUB_USERNAME}:${GITHUB_TOKEN}@github.com/${VERSIONS_REPO}.git" > /dev/null 2>&1
|
2019-05-17 22:47:03 -04:00
|
|
|
cd ..
|
|
|
|
|
2021-10-01 12:47:10 -04:00
|
|
|
if [[ "${OS_NAME}" == "osx" ]]; then
|
2021-08-27 10:01:17 -04:00
|
|
|
ASSET_NAME=VSCodium-darwin-${VSCODE_ARCH}-${MS_TAG}.zip
|
2020-12-22 23:02:22 -05:00
|
|
|
VERSION_PATH="darwin/${VSCODE_ARCH}"
|
2021-10-01 12:47:10 -04:00
|
|
|
updateLatestVersion
|
|
|
|
elif [[ "${OS_NAME}" == "windows" ]]; then
|
2019-07-09 18:25:17 -04:00
|
|
|
# system installer
|
2021-08-27 10:01:17 -04:00
|
|
|
ASSET_NAME=VSCodiumSetup-${VSCODE_ARCH}-${MS_TAG}.exe
|
2021-01-12 15:01:29 -05:00
|
|
|
VERSION_PATH="win32/${VSCODE_ARCH}/system"
|
2021-10-01 12:47:10 -04:00
|
|
|
updateLatestVersion
|
2019-05-17 22:47:03 -04:00
|
|
|
|
|
|
|
# user installer
|
2021-08-27 10:01:17 -04:00
|
|
|
ASSET_NAME=VSCodiumUserSetup-${VSCODE_ARCH}-${MS_TAG}.exe
|
2021-01-12 15:01:29 -05:00
|
|
|
VERSION_PATH="win32/${VSCODE_ARCH}/user"
|
2021-10-01 12:47:10 -04:00
|
|
|
updateLatestVersion
|
2019-05-17 22:47:03 -04:00
|
|
|
|
|
|
|
# windows archive
|
2021-08-27 10:01:17 -04:00
|
|
|
ASSET_NAME=VSCodium-win32-${VSCODE_ARCH}-${MS_TAG}.zip
|
2021-01-12 15:01:29 -05:00
|
|
|
VERSION_PATH="win32/${VSCODE_ARCH}/archive"
|
2021-10-01 12:47:10 -04:00
|
|
|
updateLatestVersion
|
|
|
|
|
2021-09-08 19:38:07 -04:00
|
|
|
if [[ "${VSCODE_ARCH}" == "ia32" || "${VSCODE_ARCH}" == "x64" ]]; then
|
|
|
|
# msi
|
|
|
|
ASSET_NAME=VSCodium-${VSCODE_ARCH}-${MS_TAG}.msi
|
|
|
|
VERSION_PATH="win32/${VSCODE_ARCH}/msi"
|
2021-10-01 12:47:10 -04:00
|
|
|
updateLatestVersion
|
|
|
|
|
2021-09-08 19:38:07 -04:00
|
|
|
# updates-disabled msi
|
|
|
|
ASSET_NAME=VSCodium-${VSCODE_ARCH}-updates-disabled-${MS_TAG}.msi
|
|
|
|
VERSION_PATH="win32/${VSCODE_ARCH}/msi-updates-disabled"
|
2021-10-01 12:47:10 -04:00
|
|
|
updateLatestVersion
|
2021-09-08 19:38:07 -04:00
|
|
|
fi
|
2019-05-16 13:41:32 -04:00
|
|
|
else # linux
|
|
|
|
# update service links to tar.gz file
|
|
|
|
# see https://update.code.visualstudio.com/api/update/linux-x64/stable/VERSION
|
|
|
|
# as examples
|
2021-08-27 10:01:17 -04:00
|
|
|
ASSET_NAME=VSCodium-linux-${VSCODE_ARCH}-${MS_TAG}.tar.gz
|
2020-10-05 13:12:28 -04:00
|
|
|
VERSION_PATH="linux/${VSCODE_ARCH}"
|
2021-10-01 12:47:10 -04:00
|
|
|
updateLatestVersion
|
2019-05-16 13:41:32 -04:00
|
|
|
fi
|
|
|
|
|
|
|
|
cd versions
|
2019-05-17 22:47:03 -04:00
|
|
|
|
2019-05-20 12:27:22 -04:00
|
|
|
git pull origin master # in case another build just pushed
|
2019-05-17 22:47:03 -04:00
|
|
|
git add .
|
2021-10-01 12:47:10 -04:00
|
|
|
|
|
|
|
CHANGES=$( git status --porcelain )
|
|
|
|
|
|
|
|
if [[ ! -z "${CHANGES}" ]]; then
|
|
|
|
dateAndMonth=$( date "+%D %T" )
|
|
|
|
git commit -m "CI update: ${dateAndMonth} (Build ${GITHUB_RUN_NUMBER})"
|
|
|
|
if ! git push origin master --quiet; then
|
|
|
|
git pull origin master
|
|
|
|
git push origin master --quiet
|
|
|
|
fi
|
2019-06-11 00:35:15 -04:00
|
|
|
fi
|
2019-05-17 22:47:03 -04:00
|
|
|
|
|
|
|
cd ..
|