chore: c2updater to acs transition (#5045)

1. disable c2updater call
2. use full sha tags (required by `acs`)
pull/24376/head
Marko Mikulicic 2022-07-05 23:47:05 +02:00 committed by GitHub
parent d8b74f6af8
commit 015bba8589
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 3 additions and 9 deletions

View File

@ -360,7 +360,7 @@ jobs:
- run:
name: Cargo release build with target arch set for CRoaring
command: |
COMMIT_SHA="$(git rev-parse --short HEAD)"
COMMIT_SHA="$(git rev-parse HEAD)"
RUST_VERSION="$(sed -E -ne 's/channel = "(.*)"/\1/p' rust-toolchain.toml)"
@ -392,7 +392,7 @@ jobs:
- persist_to_workspace:
root: /tmp/images
paths:
- '*.tar.gz'
- "*.tar.gz"
- cache_save
deploy_release:
@ -412,7 +412,7 @@ jobs:
- run:
name: Upload images
command: |
COMMIT_SHA="$(git rev-parse --short HEAD)"
COMMIT_SHA="$(git rev-parse HEAD)"
BRANCH="$(echo "$CIRCLE_BRANCH" | tr '[:upper:]' '[:lower:]' | sed 's/[^a-z0-9]/_/g')"
docker load -i /tmp/images/iox.tar.gz
@ -428,12 +428,6 @@ jobs:
# for next step
echo "export COMMIT_SHA=${COMMIT_SHA}" >> $BASH_ENV
# currently we still need to PUSH our image tag. This will be replaced by a pull-based approach soon.
- run:
name: Push to c2updater
command: |
echo "$QUAY_PASS" | docker login quay.io --username $QUAY_USER --password-stdin
./.circleci/get-deploy-tags.sh "${COMMIT_SHA}"
# Prepare the CI image used for other tasks.
#