Sha256: c2a8da79a0aad75ce940eab363e978a4bf3f26e2515acf947f182214d0fb99a8
Contents?: true
Size: 1.33 KB
Versions: 5
Compression:
Stored size: 1.33 KB
Contents
# For methods, refer to the properties of the CloudFormation CodeBuild::Project https://amzn.to/2UTeNlr # For convenience methods, refer to the source https://github.com/tongueroo/codebuild/blob/master/lib/codebuild/dsl/project.rb # name("example-project-name") # recommend leaving unset and codebuild will use a conventional name github_url("<%= project_github_url %>") linux_image("<%= lookup_managed_image(/ruby:/) %>") environment_variables( JETS_ENV: "test", # API_KEY: "ssm:/codebuild/demo/api_key" # Example of ssm parameter ) # Some useful helpers: # puts "project_name #{project_name}" # IE: demo-web # puts "full_project_name #{full_project_name}" # demo-web-development # Uncomment to enable github webhook, the GitHub oauth token needs admin:repo_hook permissions # Refer to https://github.com/tongueroo/codebuild/blob/master/readme/github_oauth.md # triggers(webhook: true) # Another example: # Docs: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-projecttriggers.html # {type: "EVENT", pattern: "PUSH"} is required # Also, note the extra brackets: [[]] is actually the proper format. I know weird. # triggers( # webhook: true, # filter_groups: [[{type: "HEAD_REF", pattern: "my-branch"}, {type: "EVENT", pattern: "PUSH"}]] # ) # Shorthand to enable all local cache modes # local_cache(true)
Version data entries
5 entries across 5 versions & 1 rubygems