7 Commits

Author SHA1 Message Date
Shubham Agrawal f006eebba3 addressed comments 2021-02-15 23:19:47 +05:30
Shubham Agrawal 937b910001 Using alpine package for aws cli 2021-02-10 17:11:16 +05:30
Shubham Agrawal 6647ff2107 Use pip to install aws cl1 v1.19.5 2021-02-10 16:06:42 +05:30
Shubham Agrawal a0b9eebc4f Merge pull request #36 from drone/aws_codecommit
Added AWS codecommit support using access & secret keys
2021-02-05 21:10:09 +05:30
Shubham Agrawal e82207b591 Fix UT 2021-02-05 20:39:03 +05:30
Shubham Agrawal 21eadbab5b Fixed test 2021-02-05 20:35:55 +05:30
Shubham Agrawal b3e3302ecf Added AWS codecommit support using access & secret keys 2021-02-05 20:02:25 +05:30
3 changed files with 15 additions and 3 deletions
+1 -1
View File
@@ -1,5 +1,5 @@
FROM alpine:3.12
RUN apk add --no-cache ca-certificates git git-lfs openssh curl perl
RUN apk add --no-cache ca-certificates git git-lfs openssh curl perl aws-cli
ADD posix/* /usr/local/bin/
ENTRYPOINT ["/usr/local/bin/clone"]
+12
View File
@@ -29,6 +29,18 @@ if [[ ! -z "${DRONE_SSH_KEY}" ]]; then
ssh-keyscan -H ${DRONE_NETRC_MACHINE} > /etc/ssh/ssh_known_hosts 2> /dev/null
fi
# AWS codecommit support using AWS access key & secret key
# Refer: https://docs.aws.amazon.com/codecommit/latest/userguide/setting-up-https-unixes.html
if [[ ! -z "$DRONE_AWS_ACCESS_KEY" ]]; then
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 default.region $DRONE_AWS_REGION
git config --global credential.helper '!aws codecommit credential-helper $@'
git config --global credential.UseHttpPath true
fi
# configure git global behavior and parameters via the
# following environment variables:
+2 -2
View File
@@ -166,7 +166,7 @@ func TestPullRequest(t *testing.T) {
cmd.Dir = local
cmd.Env = []string{
fmt.Sprintf("DRONE_COMMIT_REF=%s", "refs/pull/14596/head"),
fmt.Sprintf("DRONE_COMMIT_BRANCH=%s", "master"),
fmt.Sprintf("DRONE_COMMIT_BRANCH=%s", "main"),
fmt.Sprintf("DRONE_COMMIT_SHA=%s", "26923a8f37933ccc23943de0d4ebd53908268582"),
fmt.Sprintf("DRONE_WORKSPACE=%s", local),
fmt.Sprintf("DRONE_REMOTE_URL=%s", remote),
@@ -195,7 +195,7 @@ func TestPullRequest(t *testing.T) {
t.Errorf("Want commit %s, got %s", want, got)
}
if want, got := "master", branch; got != want {
if want, got := "main", branch; got != want {
t.Errorf("Want branch %s, got %s", want, got)
}