aws-codebuild-jenkins-plugin
aws-codebuild-jenkins-plugin copied to clipboard
AWS CodeBuild integration as a Jenkins build step.
https://github.com/awslabs/aws-codebuild-jenkins-plugin/blob/3fbfde23b8a8c71bcabfe241759846b5696f53de/src/main/java/CodeBuilder.java#L825-L832 Why is the plugin using `0` as override when the input value is empty? Doesn't it make more sense to use the pipeline default setting?
*Issue #, if available:* #129 *Description of changes:* Parallel execution of `awsCodeBuild` results fillowing error: > [AWS CodeBuild Plugin] Unexpected exception upon uploading source zip to S3: The request to...
Running `awsCodeBuild` with `sourceControlType: 'jenkins'` often results following error: ``` [AWS CodeBuild Plugin] Unexpected exception upon uploading source zip to S3: The request to the service failed with a retryable...
aws-codebuild-jenkins-plugin targets Jenkins 2.60.3, but its dependency targets Jenkins > 2.60.3. Example: https://github.com/awslabs/aws-codebuild-jenkins-plugin/pull/128 You bumped script-security 1.56 to 1.75, but script-security-1.75 targets Jenkins-2.176.4: https://github.com/jenkinsci/script-security-plugin/blob/script-security-1.75/pom.xml @leoherran-aws This results `mvn hpi:run` failed...
When I try to pass in a name value pair in environment variables, the type gets set to PLAINTEXT even though the type in the job was set to SECRETS_MANAGER....
Context: https://issues.jenkins.io/browse/JENKINS-66816 It's been reported that Jenkins 2.303.2 is working with the AWS CodeBuild plugin.
According to documentation, the following artifacts should be stored in an identical matter: ``` [...] artifactTypeOverride: 'S3', artifactLocationOverride: "${S3_BUCKET}", artifactPathOverride: "${PATH}", artifactNamespaceOverride: 'NONE', artifactNameOverride: "foo.zip", artifactPackagingOverride: 'ZIP', secondaryArtifactsOverride: """[ {...
Hello, my Jenkins is setup on ECS Fargate. We trigger builds using Jenkins ECS Plugin which launches a docker agent and runs jobs on it. The issue sounds similar where...
When the plugin pulls artifacts from S3, I've noticed that it downloads them to the workspace on the Jenkins master rather than the slave which the job is running on....
I have buildspec.yml ``` version: 0.2 phases: build: commands: - #some commands artifacts: files: '**/*' base-directory: ``` and in Jenkinsfile configuration for run CodeBuild ``` stage('Execute CodeBuild') { steps {...