Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
L
LHCbNightlyConf
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Requirements
Jira
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
LHCb Core Software
LHCbNightlyConf
Merge requests
!1273
Add test versions of 2016-patches and hlt2012-patches
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
Add test versions of 2016-patches and hlt2012-patches
add-test-legacy-slots
into
master
Overview
0
Commits
1
Pipelines
2
Changes
1
Merged
Marco Clemencic
requested to merge
add-test-legacy-slots
into
master
4 months ago
Overview
0
Commits
1
Pipelines
2
Changes
1
Expand
0
0
Merge request reports
Compare
master
version 1
d6c7e534
4 months ago
master (base)
and
latest version
latest version
275c470e
1 commit,
4 months ago
version 1
d6c7e534
1 commit,
4 months ago
1 file
+
23
−
1
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
lhcbnightlyconf/Temporary.py
+
23
−
1
Options
@@ -11,6 +11,7 @@
from
lb.nightly.configuration
import
DBASE
,
Package
,
Project
,
Slot
from
.Main
import
create_head_slot
from
.Patches
import
preparePatchesSlot
from
.Common
import
(
# isort: skip
DEFAULT_CACHE_ENTRIES
,
DEFAULT_ENV
,
WARNINGS_EXCEPTIONS
,
ERROR_EXCEPTIONS
,
@@ -46,10 +47,31 @@ slots.append(
cache_entries
=
dict
(
DEFAULT_CACHE_ENTRIES
),
))
slots
.
append
(
preparePatchesSlot
(
"
2016
"
,
"
test-2016
"
))
slots
[
-
1
].
disabled
=
True
for
project
in
slots
[
-
1
].
projects
:
project
.
disabled
=
project
.
name
not
in
(
"
LHCb
"
,
"
Lbcom
"
,
"
DBASE
"
,
"
PARAM
"
)
slots
.
append
(
Slot
(
'
test-hlt2012
'
,
disabled
=
True
,
desc
=
'
Test slot with patches for the 2012 Moore stack
'
,
projects
=
[
Project
(
name
,
'
hlt2012-patches
'
)
for
name
in
(
"
LHCb
"
,
"
Lbcom
"
)
],
platforms
=
[
'
x86_64-slc5-gcc46-opt
'
,
'
x86_64-slc5-gcc46-dbg
'
],
warning_exceptions
=
[
r
'
/Boost/
'
,
r
'
/genreflex/
'
],
build_tool
=
'
cmt
'
,
env
=
[
"
PATH=/cvmfs/lhcb.cern.ch/lib/contrib/CMake/3.17.3/Linux-x86_64/bin:$PATH
"
,
"
CMTEXTRATAGS=host-slc5
"
,
]))
slots
.
append
(
create_head_slot
(
"
nightly-builds-test
"
,
LCG
=
"
10
3
"
,
LCG
=
"
10
5c
"
,
projects
=
[
"
LCG
"
,
"
Gaudi
"
,
"
Detector
"
,
"
LHCb
"
],
platforms
=
[
"
x86_64_v2-centos7-gcc11-opt
"
,
Loading