Skip to content
Snippets Groups Projects
Commit 62782f69 authored by Wouter Deconinck's avatar Wouter Deconinck
Browse files

fix: remove redundant cxxflags in detectors.yaml

parent 08542aa0
No related branches found
No related tags found
1 merge request!643fix: remove redundant cxxflags in detectors.yaml
...@@ -105,6 +105,8 @@ if __name__ == '__main__': ...@@ -105,6 +105,8 @@ if __name__ == '__main__':
subprocess.check_call(' '.join(cmd), shell=True) subprocess.check_call(' '.join(cmd), shell=True)
## build ## build
cxxflags = '' cxxflags = ''
if os.environ['CXXFLAGS']:
cxxflags = os.environ['CXXFLAGS']
if cfg.get('cxxflags'): if cfg.get('cxxflags'):
cxxflags = cfg['cxxflags'] cxxflags = cfg['cxxflags']
cmd = [ cmd = [
......
...@@ -3,48 +3,37 @@ detectors: ...@@ -3,48 +3,37 @@ detectors:
nightly: nightly:
default: true default: true
version: main version: main
cxxflags: -DDD4HEP_FIELD_TYPE_OVERRIDE=field_type
main: main:
version: main version: main
cxxflags: -DDD4HEP_FIELD_TYPE_OVERRIDE=field_type
23.01.0: 23.01.0:
version: 23.01.0 version: 23.01.0
patches: patches:
- https://github.com/eic/epic/pull/449.patch - https://github.com/eic/epic/pull/449.patch
cxxflags: -DDD4HEP_FIELD_TYPE_OVERRIDE=field_type
23.03.0: 23.03.0:
version: 23.03.0 version: 23.03.0
patches: patches:
- https://github.com/eic/epic/pull/449.patch - https://github.com/eic/epic/pull/449.patch
cxxflags: -DDD4HEP_FIELD_TYPE_OVERRIDE=field_type
23.05.0: 23.05.0:
version: 23.05.0 version: 23.05.0
patches: patches:
- https://github.com/eic/epic/pull/449.patch - https://github.com/eic/epic/pull/449.patch
cxxflags: -DDD4HEP_FIELD_TYPE_OVERRIDE=field_type
23.05.1: 23.05.1:
version: 23.05.1 version: 23.05.1
patches: patches:
- https://github.com/eic/epic/pull/449.patch - https://github.com/eic/epic/pull/449.patch
cxxflags: -DDD4HEP_FIELD_TYPE_OVERRIDE=field_type
23.05.2: 23.05.2:
version: 23.05.2 version: 23.05.2
patches: patches:
- https://github.com/eic/epic/pull/449.patch - https://github.com/eic/epic/pull/449.patch
cxxflags: -DDD4HEP_FIELD_TYPE_OVERRIDE=field_type
23.06.0: 23.06.0:
version: 23.06.0 version: 23.06.0
patches: patches:
- https://github.com/eic/epic/pull/449.patch - https://github.com/eic/epic/pull/449.patch
cxxflags: -DDD4HEP_FIELD_TYPE_OVERRIDE=field_type
23.06.1: 23.06.1:
version: 23.06.1 version: 23.06.1
patches: patches:
- https://github.com/eic/epic/pull/449.patch - https://github.com/eic/epic/pull/449.patch
cxxflags: -DDD4HEP_FIELD_TYPE_OVERRIDE=field_type
23.07.0: 23.07.0:
version: 23.07.0 version: 23.07.0
cxxflags: -DDD4HEP_FIELD_TYPE_OVERRIDE=field_type
23.07.1: 23.07.1:
version: 23.07.1 version: 23.07.1
cxxflags: -DDD4HEP_FIELD_TYPE_OVERRIDE=field_type
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment