From: "Alexander V. Tikhonov" <avtikhon@tarantool.org> To: Kirill Yukhin <kyukhin@tarantool.org>, Sergey Bronnikov <sergeyb@tarantool.org> Cc: tarantool-patches@dev.tarantool.org Subject: [Tarantool-patches] [PATCH v2] gitlab-ci: save sources to new S3 location Date: Fri, 11 Sep 2020 16:02:34 +0300 [thread overview] Message-ID: <ea5b7a4606b162d3fdcb3b5ca82c74adbe881c1f.1599829282.git.avtikhon@tarantool.org> (raw) Changed S3 location for sources tarballs. Also added ability to create S3 directory for the tarballs if it was not existed. --- Github: https://github.com/tarantool/tarantool/tree/avtikhon/src-s3-new .gitlab.mk | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/.gitlab.mk b/.gitlab.mk index 0ce978063..2a7b4d90b 100644 --- a/.gitlab.mk +++ b/.gitlab.mk @@ -108,6 +108,7 @@ GIT_DESCRIBE=$(shell git describe HEAD) MAJOR_VERSION=$(word 1,$(subst ., ,$(GIT_DESCRIBE))) MINOR_VERSION=$(word 2,$(subst ., ,$(GIT_DESCRIBE))) BUCKET="$(MAJOR_VERSION).$(MINOR_VERSION)" +S3_BUCKET_URL="s3://tarantool_repo/sources/$(BUCKET)" deploy_prepare: [ -d packpack ] || \ @@ -130,8 +131,13 @@ source: deploy_prepare TARBALL_COMPRESSOR=gz packpack/packpack tarball source_deploy: source - aws --endpoint-url "${AWS_S3_ENDPOINT_URL}" s3 cp build/*.tar.gz \ - "s3://tarantool.${BUCKET}.src/" --acl public-read + ( aws --endpoint-url "${AWS_S3_ENDPOINT_URL}" s3 ls "${S3_BUCKET_URL}/" || \ + ( rm -rf "${BUCKET}" ; mkdir "${BUCKET}" && \ + aws --endpoint-url "${AWS_S3_ENDPOINT_URL}" \ + s3 mv "${BUCKET}" "${S3_BUCKET_URL}" --recursive \ + --acl public-read ) ) && \ + aws --endpoint-url "${AWS_S3_ENDPOINT_URL}" \ + s3 cp build/*.tar.gz "${S3_BUCKET_URL}/" --acl public-read # ################### # Performance testing -- 2.17.1
reply other threads:[~2020-09-11 13:02 UTC|newest] Thread overview: [no followups] expand[flat|nested] mbox.gz Atom feed
Reply instructions: You may reply publicly to this message via plain-text email using any one of the following methods: * Save the following mbox file, import it into your mail client, and reply-to-all from there: mbox Avoid top-posting and favor interleaved quoting: https://en.wikipedia.org/wiki/Posting_style#Interleaved_style * Reply using the --to, --cc, and --in-reply-to switches of git-send-email(1): git send-email \ --in-reply-to=ea5b7a4606b162d3fdcb3b5ca82c74adbe881c1f.1599829282.git.avtikhon@tarantool.org \ --to=avtikhon@tarantool.org \ --cc=kyukhin@tarantool.org \ --cc=sergeyb@tarantool.org \ --cc=tarantool-patches@dev.tarantool.org \ --subject='Re: [Tarantool-patches] [PATCH v2] gitlab-ci: save sources to new S3 location' \ /path/to/YOUR_REPLY https://kernel.org/pub/software/scm/git/docs/git-send-email.html * If your mail client supports setting the In-Reply-To header via mailto: links, try the mailto: link
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox