mirror of https://git.tuxpa.in/a/code-server.git
Upgrade VS Code to 1.33.1
This commit is contained in:
parent
6c3ff1d6f0
commit
742dd6f597
|
@ -2,7 +2,7 @@ language: node_js
|
||||||
node_js:
|
node_js:
|
||||||
- 8.15.0
|
- 8.15.0
|
||||||
env:
|
env:
|
||||||
- VSCODE_VERSION="1.33.0" MAJOR_VERSION="1" VERSION="$MAJOR_VERSION.$TRAVIS_BUILD_NUMBER-vsc$VSCODE_VERSION"
|
- VSCODE_VERSION="1.33.1" MAJOR_VERSION="1" VERSION="$MAJOR_VERSION.$TRAVIS_BUILD_NUMBER-vsc$VSCODE_VERSION"
|
||||||
matrix:
|
matrix:
|
||||||
include:
|
include:
|
||||||
- os: linux
|
- os: linux
|
||||||
|
|
|
@ -12,7 +12,7 @@ const libPath = path.join(__dirname, "../lib");
|
||||||
const vscodePath = path.join(libPath, "vscode");
|
const vscodePath = path.join(libPath, "vscode");
|
||||||
const defaultExtensionsPath = path.join(libPath, "extensions");
|
const defaultExtensionsPath = path.join(libPath, "extensions");
|
||||||
const pkgsPath = path.join(__dirname, "../packages");
|
const pkgsPath = path.join(__dirname, "../packages");
|
||||||
const vscodeVersion = process.env.VSCODE_VERSION || "1.33.0";
|
const vscodeVersion = process.env.VSCODE_VERSION || "1.33.1";
|
||||||
const vsSourceUrl = `https://codesrv-ci.cdr.sh/vstar-${vscodeVersion}.tar.gz`;
|
const vsSourceUrl = `https://codesrv-ci.cdr.sh/vstar-${vscodeVersion}.tar.gz`;
|
||||||
|
|
||||||
const buildServerBinary = register("build:server:binary", async (runner) => {
|
const buildServerBinary = register("build:server:binary", async (runner) => {
|
||||||
|
|
|
@ -4,7 +4,7 @@ set -euxo pipefail
|
||||||
# Builds a tarfile containing vscode sourcefiles neccessary for CI.
|
# Builds a tarfile containing vscode sourcefiles neccessary for CI.
|
||||||
# Done outside the CI and uploaded to object storage to reduce CI time.
|
# Done outside the CI and uploaded to object storage to reduce CI time.
|
||||||
|
|
||||||
branch=1.33.0
|
branch=1.33.1
|
||||||
dir=/tmp/vstar
|
dir=/tmp/vstar
|
||||||
outfile=/tmp/vstar-$branch.tar.gz
|
outfile=/tmp/vstar-$branch.tar.gz
|
||||||
rm -rf $dir
|
rm -rf $dir
|
||||||
|
|
Loading…
Reference in New Issue