Skip to content

Commit

Permalink
Adding the option to define id postfix strings to host-config files g…
Browse files Browse the repository at this point in the history
…enerated in tpl-manager.
  • Loading branch information
mdavis36 committed Nov 14, 2024
1 parent 7104104 commit 1273994
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 1273994

Please sign in to comment.