Skip to content

Commit

Permalink
simplify build script
Browse files Browse the repository at this point in the history
  • Loading branch information
terrywbrady committed Aug 27, 2024
1 parent 8d8ae01 commit aa03f73
Showing 1 changed file with 14 additions and 14 deletions.
28 changes: 14 additions & 14 deletions build-config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,17 +9,17 @@ flagsets:
main: &main
description: "Complete build and test of docker stack images and maven assets. Scan ALL docker images."
push: fasle
build-it: true
build-stack: true
build-it: false
build-stack: false
scan-unfixable: false
scan-fixable: false
run-maven: true
run-maven-tests: true
build-support: true
docker: &docker
description: "Build docker images and push to ECR"
build-it: true
build-stack: true
build-it: false
build-stack: false
push: false
scan-unfixable: false
scan-fixable: false
Expand All @@ -28,8 +28,8 @@ flagsets:
build-support: false
docker-nopush: &docker-nopush
description: "Build docker images. Do not push to ECR"
build-it: true
build-stack: true
build-it: false
build-stack: false
push: false
scan-unfixable: false
scan-fixable: false
Expand All @@ -38,8 +38,8 @@ flagsets:
build-support: false
scan: &scan
description: "Build docker images and scan for vulnerabilities"
build-it: true
build-stack: true
build-it: false
build-stack: false
push: false
scan-unfixable: false
scan-fixable: false
Expand All @@ -48,8 +48,8 @@ flagsets:
build-support: false
buildonly: &buildonly
description: "Run docker and maven builds. No tests. No scans."
build-it: true
build-stack: true
build-it: false
build-stack: false
push: false
scan-unfixable: false
scan-fixable: false
Expand All @@ -58,7 +58,7 @@ flagsets:
build-support: false
mvn: &mvn
description: "Run maven builds only. No tests."
build-it: true
build-it: false
build-stack: false
push: false
scan-unfixable: false
Expand Down Expand Up @@ -88,8 +88,8 @@ flagsets:
build-support: false
buildtest: &buildtest
description: "Run docker builds and maven builds and tests."
build-it: true
build-stack: true
build-it: false
build-stack: false
push: false
scan-unfixable: false
scan-fixable: false
Expand All @@ -98,7 +98,7 @@ flagsets:
build-support: false
jenkins: &jenkins
description: "Jenkins build: run maven builds and tests"
build-it: true
build-it: false
build-stack: false
push: false
scan-unfixable: false
Expand Down

0 comments on commit aa03f73

Please sign in to comment.