fix: disable aws integration
Some checks reported errors
continuous-integration/drone/push Build was killed

This commit is contained in:
Markus Pesch 2023-10-01 19:03:40 +02:00
parent d320981914
commit c33efa3ce9
Signed by: volker.raschek
GPG Key ID: 852BCC170D81A982
2 changed files with 9 additions and 10 deletions

View File

@ -1,6 +1,5 @@
FROM docker.io/library/alpine:3.18.4 FROM docker.io/library/alpine:3.18.4
RUN apk add --no-cache \ RUN apk add --no-cache \
aws-cli \
bash \ bash \
ca-certificates \ ca-certificates \
curl \ curl \

View File

@ -45,17 +45,17 @@ if [[ -n "${DRONE_SSH_KEY}" ]]; then
ssh-keyscan -H "${DRONE_NETRC_MACHINE}" > /etc/ssh/ssh_known_hosts 2> /dev/null ssh-keyscan -H "${DRONE_NETRC_MACHINE}" > /etc/ssh/ssh_known_hosts 2> /dev/null
fi fi
# AWS codecommit support using AWS access key & secret key # # AWS codecommit support using AWS access key & secret key
# Refer: https://docs.aws.amazon.com/codecommit/latest/userguide/setting-up-https-unixes.html # # Refer: https://docs.aws.amazon.com/codecommit/latest/userguide/setting-up-https-unixes.html
if [[ -n "${DRONE_AWS_ACCESS_KEY}" ]]; then # if [[ -n "${DRONE_AWS_ACCESS_KEY}" ]]; then
aws configure set aws_access_key_id "${DRONE_AWS_ACCESS_KEY}" # aws configure set aws_access_key_id "${DRONE_AWS_ACCESS_KEY}"
aws configure set aws_secret_access_key "${DRONE_AWS_SECRET_KEY}" # aws configure set aws_secret_access_key "${DRONE_AWS_SECRET_KEY}"
aws configure set default.region "${DRONE_AWS_REGION}" # aws configure set default.region "${DRONE_AWS_REGION}"
git config --global credential.helper '!aws codecommit credential-helper $@' # git config --global credential.helper '!aws codecommit credential-helper $@'
git config --global credential.UseHttpPath true # git config --global credential.UseHttpPath true
fi # fi
# configure git global behavior and parameters via the # configure git global behavior and parameters via the
# following environment variables: # following environment variables: