Skip to content
This repository has been archived by the owner on May 9, 2020. It is now read-only.

Commit

Permalink
Do not attempt to update lock file when installing dependencies on de…
Browse files Browse the repository at this point in the history
…ployment
  • Loading branch information
gregarndt committed Mar 13, 2017
1 parent 95e573e commit 14887a8
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion deploy/packer/app/scripts/deploy.sh
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ sudo npm install -g babel-cli yarn
retry_count=0
max_retries=5
until [ $retry_count -gt $max_retries ]; do
yarn install && break
yarn install --frozen-lockfile && break
retry_count=$(($retry_count + 1))
sleep 5
done
Expand Down
10 changes: 5 additions & 5 deletions taskgraph.json
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
],
"payload": {
"command": [
"yarn && yarn build && ./build.sh && ./.test/docker-worker-test --this-chunk 1 --total-chunks 5"
"yarn install --frozen-lockfile && yarn build && ./build.sh && ./.test/docker-worker-test --this-chunk 1 --total-chunks 5"
],
"image": "taskcluster/worker-ci:0.3.1",
"maxRunTime": 3600,
Expand Down Expand Up @@ -58,7 +58,7 @@
],
"payload": {
"command": [
"yarn && yarn build && ./build.sh && ./.test/docker-worker-test --this-chunk 2 --total-chunks 5"
"yarn install --frozen-lockfile && yarn build && ./build.sh && ./.test/docker-worker-test --this-chunk 2 --total-chunks 5"
],
"image": "taskcluster/worker-ci:0.3.1",
"maxRunTime": 3600,
Expand Down Expand Up @@ -95,7 +95,7 @@
],
"payload": {
"command": [
"yarn && yarn build && ./build.sh && ./.test/docker-worker-test --this-chunk 3 --total-chunks 5"
"yarn install --frozen-lockfile && yarn build && ./build.sh && ./.test/docker-worker-test --this-chunk 3 --total-chunks 5"
],
"image": "taskcluster/worker-ci:0.3.1",
"maxRunTime": 3600,
Expand Down Expand Up @@ -132,7 +132,7 @@
],
"payload": {
"command": [
"yarn && yarn build && ./build.sh && ./.test/docker-worker-test --this-chunk 4 --total-chunks 5"
"yarn install --frozen-lockfile && yarn build && ./build.sh && ./.test/docker-worker-test --this-chunk 4 --total-chunks 5"
],
"image": "taskcluster/worker-ci:0.3.1",
"maxRunTime": 3600,
Expand Down Expand Up @@ -169,7 +169,7 @@
],
"payload": {
"command": [
"yarn && yarn build && ./build.sh && ./.test/docker-worker-test --this-chunk 5 --total-chunks 5"
"yarn install --frozen-lockfile && yarn build && ./build.sh && ./.test/docker-worker-test --this-chunk 5 --total-chunks 5"
],
"image": "taskcluster/worker-ci:0.3.1",
"maxRunTime": 3600,
Expand Down

0 comments on commit 14887a8

Please sign in to comment.