Reputation: 10467
AWS document said we can make use of S3, lambda, etc. but still do not know how. this link mentioned some way but the link insides is invalid..... https://aws.amazon.com/blogs/devops/integrating-git-with-aws-codepipeline/
Upvotes: 6
Views: 12098
Reputation: 854
You can mirror your Gitlab repository to AWS CodeCommit and use that mirrored repo as a source action for your pipeline. I think that's the easiest way of accomplishing it.
How to mirror from Gitlab to AWS CodeCommit.
How to use AWS CodeCommit as a source action for you pipeline.
Upvotes: 4
Reputation: 1488
You can use this guide to set up a system so that your git repository is synchronized to an S3 bucket.
Then, set up the pipeline using the S3 source action.
Upvotes: 6