Skip to content

Make automatic updates on v3.2.0 work again #1703

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
May 20, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
22 changes: 15 additions & 7 deletions ci/build/build-packages.sh
Original file line number Diff line number Diff line change
Expand Up @@ -8,22 +8,30 @@ main() {
cd "$(dirname "${0}")/../.."
source ./ci/lib.sh

local release_name="code-server-$VERSION-$OS-$ARCH"
mkdir -p release-packages

release_archive
if [[ $OS == linux && $ARCH == "amd64" ]]; then
# Will stop most of the auto update issues.
# For the other releases it's more important to not pollute the release listing.
ARCH=x86_64 release_archive
fi

if [[ $OSTYPE == linux* ]]; then
release_nfpm
fi
}

release_archive() {
local release_name="code-server-$VERSION-$OS-$ARCH"
if [[ $OS == "linux" ]]; then
tar -czf "release-packages/$release_name.tar.gz" --transform "s/^\.\/release-static/$release_name/" ./release-static
else
tar -czf "release-packages/$release_name.tar.gz" -s "/^release-static/$release_name/" release-static
fi

echo "done (release-packages/$release_name)"

release_gcp

if [[ $OSTYPE == linux* ]]; then
release_nfpm
fi
}

release_gcp() {
Expand All @@ -39,7 +47,7 @@ release_nfpm() {
nfpm_config=$(envsubst < ./ci/build/nfpm.yaml)

# The underscores are convention for .deb.
nfpm pkg -f <(echo "$nfpm_config") --target "release-packages/code-server_${VERSION}_${ARCH}.deb"
nfpm pkg -f <(echo "$nfpm_config") --target "release-packages/code-server_${VERSION}_$ARCH.deb"
nfpm pkg -f <(echo "$nfpm_config") --target "release-packages/code-server-$VERSION-$ARCH.rpm"
}

Expand Down
3 changes: 3 additions & 0 deletions ci/build/build-static-release.sh
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,9 @@ main() {
rsync ./ci/build/code-server.sh "$RELEASE_PATH/bin/code-server"
rsync "$node_path" "$RELEASE_PATH/lib/node"

ln -s "./bin/code-server" "$RELEASE_PATH/code-server"
ln -s "./lib/node" "$RELEASE_PATH/node"

cd "$RELEASE_PATH"
yarn --production --frozen-lockfile
}
Expand Down