Skip to content

Commit

Permalink
C Merge branch 'develop' into feature/performance_tests
Browse files Browse the repository at this point in the history
  • Loading branch information
ldowen committed Nov 15, 2024
2 parents 5d9ea27 + 224c6ef commit 4379c85
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions scripts/devtools/tpl-manager.py
Original file line number Diff line number Diff line change
Expand Up @@ -64,6 +64,9 @@ def parse_args():
parser.add_argument('--skip-init', action='store_true',
help='Skip setting up and configuring Spack.')

parser.add_argument('--id', type=str, default="",
help='ID string to postfix on initconfig file.')

return parser.parse_args()

# Parse the json formatted spec list...
Expand Down Expand Up @@ -173,6 +176,9 @@ def build_deps(args):
# Install only the dependencies for Spheral and create CMake configure file
if "Error: " in sexe("{0} dev-build -q --fresh -u initconfig {1}@develop%{2} 2>&1 | tee -a \"tpl-build-{2}-out.txt\"".format(spack_cmd, package_name, s), ret_output=True): sys.exit(1)

if args.id:
sexe("file=$(ls -t *.cmake | head -n 1); mv \"$file\" \"${file%.cmake}-"+args.id+".cmake\"")

if not args.no_clean:
sexe("rm -f spec-info-* tpl-build-* spack-build-* spack-configure-args.txt")

Expand Down

0 comments on commit 4379c85

Please sign in to comment.