Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: moving and renaming buildspec.yml #360

Merged
merged 10 commits into from
Oct 9, 2021
24 changes: 12 additions & 12 deletions buildspec.yml → codebuild/ci/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,34 +7,34 @@ batch:
fast-fail: false
build-graph:
- identifier: static_analysis
buildspec: codebuild/ci/static-analysis.yml
buildspec: ci/static-analysis.yml
env:
compute-type: BUILD_GENERAL1_MEDIUM
image: aws/codebuild/amazonlinux2-x86_64-standard:3.0
######### Start Vector tests #########
- identifier: vectors_ci_openjdk8
buildspec: codebuild/ci/vectors-ci.yml
buildspec: ci/vectors-ci.yml
env:
compute-type: BUILD_GENERAL1_LARGE
variables:
JAVA_ENV_VERSION: openjdk8
image: aws/codebuild/standard:3.0
image: aws/codebuild/standard:5.0
- identifier: vectors_ci_openjdk11
buildspec: codebuild/ci/vectors-ci.yml
buildspec: ci/vectors-ci.yml
env:
compute-type: BUILD_GENERAL1_LARGE
variables:
JAVA_ENV_VERSION: openjdk11
image: aws/codebuild/standard:3.0
image: aws/codebuild/standard:5.0
- identifier: vectors_ci_corretto8
buildspec: codebuild/ci/vectors-ci.yml
buildspec: ci/vectors-ci.yml
env:
compute-type: BUILD_GENERAL1_LARGE
variables:
JAVA_ENV_VERSION: corretto8
image: aws/codebuild/amazonlinux2-x86_64-standard:3.0
- identifier: vectors_ci_corretto11
buildspec: codebuild/ci/vectors-ci.yml
buildspec: ci/vectors-ci.yml
env:
compute-type: BUILD_GENERAL1_LARGE
variables:
Expand All @@ -45,27 +45,27 @@ batch:
buildspec: codebuild/ci/release-ci.yml
env:
compute-type: BUILD_GENERAL1_LARGE
image: aws/codebuild/standard:3.0
image: aws/codebuild/standard:5.0
######### Start JAR Smoke tests #########
- identifier: validate_ci_openjdk8
depend-on:
- release_ci
buildspec: codebuild/ci/validate-ci.yml
buildspec: ci/validate-ci.yml
env:
variables:
JAVA_ENV_VERSION: openjdk8
JAVA_NUMERIC_VERSION: 8
image: aws/codebuild/standard:3.0
image: aws/codebuild/standard:5.0
- identifier: validate_ci_openjdk11
depend-on:
- release_ci
buildspec: codebuild/ci/validate-ci.yml
buildspec: ci/validate-ci.yml
env:
compute-type: BUILD_GENERAL1_MEDIUM
variables:
JAVA_ENV_VERSION: openjdk11
JAVA_NUMERIC_VERSION: 11
image: aws/codebuild/standard:3.0
image: aws/codebuild/standard:5.0
- identifier: validate_ci_corretto8
depend-on:
- release_ci
Expand Down