Skip to content
Snippets Groups Projects
Commit e9b3b6fd authored by Lorenz Huedepohl's avatar Lorenz Huedepohl
Browse files

Merge branch 'add_compiler_repo' into 'master'

Add macro compiler_repository to have early access to compiler name

See merge request mpcdf/osc-plugins!2
parents f5ca5902 d33d3969
No related branches found
No related tags found
1 merge request!2Add macro compiler_repository to have early access to compiler name
Pipeline #67030 passed
......@@ -409,10 +409,12 @@ def mpcdf_setup_repositories(api_url, project, distribution=None, parent=None, p
repo("System", ("distributions", distribution))
for compiler in compilers + pgis:
repo(compiler, (project, "System"), compiler=True)
repo(compiler, (project, "System"), compiler=True,
compiler_repository=compiler)
for mpi in filter(partial(valid_mpi, compiler), mpis):
repo(mpi + "_" + compiler, (project, compiler), mpi=True, mpi_repository=mpi)
repo(mpi + "_" + compiler, (project, compiler), mpi=True,
mpi_repository=mpi, compiler_repository=compiler)
for cuda in cudas:
for compiler in filter(partial(valid_cuda, cuda), compilers):
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment