Skip to content

Commit

Permalink
revert the change to delete install step for builder script (#796)
Browse files Browse the repository at this point in the history
  • Loading branch information
TingDaoK authored Jun 13, 2024
1 parent ae87528 commit adfb5a0
Show file tree
Hide file tree
Showing 14 changed files with 7 additions and 279 deletions.
7 changes: 7 additions & 0 deletions .builder/actions/aws_crt_java_build.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,3 +13,10 @@ def run(self, env):
else:
env.shell.exec("mvn", "-P", "continuous-integration",
"-B", "compile", check=True)

parser = argparse.ArgumentParser()
parser.add_argument('--classifier')
args = parser.parse_known_args(env.args.args)[0]
if args.classifier:
env.shell.exec("mvn", "-B", "install", "-DskipTests", "-Dshared-lib.skip=true",
f"-Dcrt.classifier={args.classifier}", check=True)
42 changes: 0 additions & 42 deletions codebuild/common-linux.sh

This file was deleted.

7 changes: 0 additions & 7 deletions codebuild/common-macos.sh

This file was deleted.

26 changes: 0 additions & 26 deletions codebuild/common-windows.bat

This file was deleted.

24 changes: 0 additions & 24 deletions codebuild/linux-clang3-x64.yml

This file was deleted.

29 changes: 0 additions & 29 deletions codebuild/linux-clang6-x64.yml

This file was deleted.

24 changes: 0 additions & 24 deletions codebuild/linux-gcc-4x-x64.yml

This file was deleted.

18 changes: 0 additions & 18 deletions codebuild/linux-gcc-4x-x86.yml

This file was deleted.

25 changes: 0 additions & 25 deletions codebuild/linux-gcc-5x-x64.yml

This file was deleted.

25 changes: 0 additions & 25 deletions codebuild/linux-gcc-6x-x64.yml

This file was deleted.

26 changes: 0 additions & 26 deletions codebuild/linux-gcc-7x-x64.yml

This file was deleted.

11 changes: 0 additions & 11 deletions codebuild/windows-msvc-2015-x86.yml

This file was deleted.

11 changes: 0 additions & 11 deletions codebuild/windows-msvc-2015.yml

This file was deleted.

11 changes: 0 additions & 11 deletions codebuild/windows-msvc-2017.yml

This file was deleted.

0 comments on commit adfb5a0

Please sign in to comment.