From 89c5a4dfeab6d87a3454dc2e0ee40fefc64ebc5a Mon Sep 17 00:00:00 2001 From: Anmol Sethi Date: Thu, 14 May 2020 21:47:33 -0400 Subject: [PATCH] Set --frozen-lockfile with yarn when necessary --- ci/build/build-release.sh | 2 +- ci/build/build-static-release.sh | 2 +- ci/dev/vscode.sh | 2 +- ci/steps/fmt.sh | 2 +- ci/steps/lint.sh | 2 +- ci/steps/release.sh | 2 +- ci/steps/test.sh | 2 +- 7 files changed, 7 insertions(+), 7 deletions(-) diff --git a/ci/build/build-release.sh b/ci/build/build-release.sh index 1c040b0a7..8f61de425 100755 --- a/ci/build/build-release.sh +++ b/ci/build/build-release.sh @@ -69,7 +69,7 @@ EOF ) > "$VSCODE_OUT_PATH/product.json" pushd "$VSCODE_OUT_PATH" - yarn --production --ignore-scripts + yarn --production --frozen-lockfile --ignore-scripts popd # We clear any native module builds. diff --git a/ci/build/build-static-release.sh b/ci/build/build-static-release.sh index f2e28fa3d..a0242971c 100755 --- a/ci/build/build-static-release.sh +++ b/ci/build/build-static-release.sh @@ -19,7 +19,7 @@ main() { rsync "$node_path" "$RELEASE_PATH/lib/node" cd "$RELEASE_PATH" - yarn --production + yarn --production --frozen-lockfile } main "$@" diff --git a/ci/dev/vscode.sh b/ci/dev/vscode.sh index d9a677952..6c508747a 100755 --- a/ci/dev/vscode.sh +++ b/ci/dev/vscode.sh @@ -15,7 +15,7 @@ main() { ( cd lib/vscode # Install VS Code dependencies. - yarn + yarn ${CI+--frozen-lockfile} ) } diff --git a/ci/steps/fmt.sh b/ci/steps/fmt.sh index f7b1bbb88..5e323596c 100755 --- a/ci/steps/fmt.sh +++ b/ci/steps/fmt.sh @@ -4,7 +4,7 @@ set -euo pipefail main() { cd "$(dirname "$0")/../.." - yarn + yarn --frozen-lockfile git submodule update --init # We do not `yarn vscode` to make test.sh faster. diff --git a/ci/steps/lint.sh b/ci/steps/lint.sh index c58473fbf..b493e1606 100755 --- a/ci/steps/lint.sh +++ b/ci/steps/lint.sh @@ -4,7 +4,7 @@ set -euo pipefail main() { cd "$(dirname "$0")/../.." - yarn + yarn --frozen-lockfile git submodule update --init # We do not `yarn vscode` to make test.sh faster. diff --git a/ci/steps/release.sh b/ci/steps/release.sh index 5c9355221..94f1df8a5 100755 --- a/ci/steps/release.sh +++ b/ci/steps/release.sh @@ -4,7 +4,7 @@ set -euo pipefail main() { cd "$(dirname "$0")/../.." - yarn + yarn --frozen-lockfile yarn vscode yarn build yarn build:vscode diff --git a/ci/steps/test.sh b/ci/steps/test.sh index 73c3520dc..801b2adc8 100755 --- a/ci/steps/test.sh +++ b/ci/steps/test.sh @@ -4,7 +4,7 @@ set -euo pipefail main() { cd "$(dirname "$0")/../.." - yarn + yarn --frozen-lockfile git submodule update --init # We do not `yarn vscode` to make test.sh faster.