Skip to content

Commit

Permalink
Switch to frozen lockfiles for yarn install in CI
Browse files Browse the repository at this point in the history
  • Loading branch information
pascalwengerter committed Oct 26, 2021
1 parent 6c063ce commit e89d09b
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .drone.star
Original file line number Diff line number Diff line change
Expand Up @@ -630,7 +630,7 @@ def uiTestPipeline(ctx, filterTags, earlyFail, runPart = 1, numberOfParts = 1, s
"cd /srv/app/web",
"git checkout $WEB_COMMITID",
"cp -r tests/acceptance/filesForUpload/* /uploads",
"yarn install --all",
"yarn install --frozen-lockfile",
"yarn build",
"./tests/acceptance/run.sh",
],
Expand Down Expand Up @@ -696,10 +696,10 @@ def accountsUITests(ctx, storage = "ocis", accounts_hash_difficulty = 4):
"cd /srv/app/web",
"git checkout $WEB_COMMITID",
"cp -r tests/acceptance/filesForUpload/* /uploads",
"yarn install --all",
"yarn install --frozen-lockfile",
"yarn build",
"cd /drone/src/accounts",
"yarn install --all",
"yarn install --frozen-lockfile",
"make test-acceptance-webui",
],
"volumes": [stepVolumeOC10Tests] +
Expand Down Expand Up @@ -763,9 +763,9 @@ def settingsUITests(ctx, storage = "ocis", accounts_hash_difficulty = 4):
"cp -r /srv/app/web/tests/acceptance/filesForUpload/* /uploads",
"cd /srv/app/web",
"git checkout $WEB_COMMITID",
"yarn install --all",
"yarn install --frozen-lockfile",
"cd /drone/src/settings",
"yarn install --all",
"yarn install --frozen-lockfile",
"make test-acceptance-webui",
],
"volumes": [stepVolumeOC10Tests] +
Expand Down

0 comments on commit e89d09b

Please sign in to comment.