Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
mpcdf
obs
osc-plugins
Commits
0d8a6e9f
Commit
0d8a6e9f
authored
Jul 02, 2019
by
Lorenz Huedepohl
Browse files
Fix: Always use 'sandybridge' microarchitecture for home: projects
parent
956eb601
Pipeline
#67021
passed with stage
in 15 seconds
Changes
1
Pipelines
1
Show whitespace changes
Inline
Side-by-side
mpcdf_common.py
View file @
0d8a6e9f
...
...
@@ -218,8 +218,12 @@ def get_microarchitecture(project):
if
project
==
"software"
:
# Stupid special case
microarch
=
"sandybridge"
el
se
:
el
if
project
.
startswith
(
"software:"
)
:
microarch
=
project
.
split
(
":"
)[
2
]
elif
project
.
startswith
(
"home:"
):
microarch
=
"sandybridge"
else
:
raise
Exception
(
"Cannot determine micro-architecture for project '{0}'"
.
format
(
project
))
if
microarch
in
known_microarchs
:
return
microarch
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment