From bb99d4f2b834281680375a90491734f2aa6cec86 Mon Sep 17 00:00:00 2001 From: Sawjan Gurung Date: Fri, 11 Aug 2023 17:47:56 +0545 Subject: [PATCH] do not skip sonar and codacy in ci (#7015) --- .drone.star | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/.drone.star b/.drone.star index bef76ed4b..66fb7fdf7 100644 --- a/.drone.star +++ b/.drone.star @@ -595,7 +595,6 @@ def uploadScanResults(ctx): "git checkout $DRONE_COMMIT", ], }, - ] + skipIfUnchanged(ctx, "unit-tests") + [ { "name": "sync-from-cache", "image": MINIO_MC, @@ -603,7 +602,7 @@ def uploadScanResults(ctx): "commands": [ "mkdir -p cache", "mc alias set cachebucket $MC_HOST $AWS_ACCESS_KEY_ID $AWS_SECRET_ACCESS_KEY", - "mc mirror cachebucket/$CACHE_BUCKET/%s/%s/cache cache/" % (ctx.repo.slug, ctx.build.commit + "-${DRONE_BUILD_NUMBER}"), + "mc mirror cachebucket/$CACHE_BUCKET/%s/%s/cache cache/ || true" % (ctx.repo.slug, ctx.build.commit + "-${DRONE_BUILD_NUMBER}"), ], }, { @@ -626,7 +625,7 @@ def uploadScanResults(ctx): "environment": MINIO_MC_ENV, "commands": [ "mc alias set cachebucket $MC_HOST $AWS_ACCESS_KEY_ID $AWS_SECRET_ACCESS_KEY", - "mc rm --recursive --force cachebucket/$CACHE_BUCKET/%s/%s/cache" % (ctx.repo.slug, ctx.build.commit + "-${DRONE_BUILD_NUMBER}"), + "mc rm --recursive --force cachebucket/$CACHE_BUCKET/%s/%s/cache || true" % (ctx.repo.slug, ctx.build.commit + "-${DRONE_BUILD_NUMBER}"), ], }, ],