We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6ea77e0 commit 8ae0d93Copy full SHA for 8ae0d93
repos/spack_repo/exawind/packages/ctest_package/package.py
@@ -31,6 +31,9 @@ def std_cmake_args(self):
31
spec_string = find_machine.cdash_build_name(self.pkg.spec)
32
trunc_spec_string = spec_string[:spec_string.index(" ctest_args")]
33
trunc_spec_string = trunc_spec_string.replace(" build_system=cmake", "")
34
+ index = trunc_spec_string.find("/")
35
+ trunc_spec_string = trunc_spec_string[:index] + trunc_spec_string[index+32+1:]
36
+ #trunc_spec_string = trunc_spec_string[:trunc_spec_string.index(" commit=")]
37
args.extend([
38
f"-DBUILDNAME={trunc_spec_string}",
39
"-DSITE={}".format(find_machine.cdash_host_name()),
0 commit comments