Skip to content
Snippets Groups Projects

Compare revisions

Changes are shown as if the source revision was being merged into the target revision. Learn more about comparing revisions.

Source

Select target project
No results found

Target

Select target project
  • rcurrie/LHCbNightlyConf
  • lhcb-core/LHCbNightlyConf
2 results
Show changes
Commits on Source (6)
......@@ -214,12 +214,7 @@ run2_gaudi_head = preparePatchesSlot(
run2_gaudi_head.Gaudi.version = "HEAD"
run2_gaudi_head.Gaudi.checkout_opts["merges"] = ["label=lhcb-gaudi-head"]
run2_gaudi_head.enabled = True
run2_gaudi_head.platforms = [
"x86_64_v2-el9-gcc13-opt",
"x86_64_v2-el9-gcc13-dbg",
"x86_64_v2-el9-clang16-opt",
"x86_64_v2-el9-clang16-dbg",
]
run2_gaudi_head.platforms = PLATFORMS_RUN2
slots.append(run2_gaudi_head)
slot2023 = preparePatchesSlot("2023")
......
......@@ -16,7 +16,7 @@ import re
from lb.nightly.configuration import Project, slot_factory
from .Common import (DEFAULT_CACHE_ENTRIES, DEFAULT_REQUIRED_EXTERNALS,
LCGToolchains)
PLATFORMS_RUN2, LCGToolchains)
from .Main import create_head_slot
from .Patches import preparePatchesSlot
......@@ -121,7 +121,7 @@ run2_dev4.cache_entries = lcg['dev4'].cache_entries
run2_dev4.preconditions = lcg['dev4'].preconditions
run2_dev4.Gaudi.version = 'HEAD'
run2_dev4.desc = "clone of run2-patches against next Gaudi and LCG version"
run2_dev4.platforms = list(lcg['dev4'].platforms)
run2_dev4.platforms = PLATFORMS_RUN2
run2_dev4.enabled = lcg['dev4'].enabled
slots.append(run2_dev4)
......