From e89d09ba0f684a3788d863a4da85e55f71e4d726 Mon Sep 17 00:00:00 2001 From: pwengerter Date: Tue, 26 Oct 2021 18:06:59 +0100 Subject: [PATCH] Switch to frozen lockfiles for yarn install in CI --- .drone.star | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.drone.star b/.drone.star index 40ad547bb0c..d5fe2658382 100644 --- a/.drone.star +++ b/.drone.star @@ -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", ], @@ -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] + @@ -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] +