Skip to content
Snippets Groups Projects
Commit cd52fdce authored by Eleni Mathioulaki's avatar Eleni Mathioulaki
Browse files

Merge branch 'brainscales_disable_docu_build' into 'master'

build(*BrainScaleS): disable doxygen docu build

See merge request technical-coordination/project-internal/devops/platform/ebrains-spack-builds!321
parents ab8a62c5 9245dece
No related branches found
No related tags found
2 merge requests!330create new experimental release,!321build(*BrainScaleS): disable doxygen docu build
Pipeline #22555 passed with stage
in 18 hours, 3 minutes, and 12 seconds
......@@ -25,7 +25,6 @@ class Hxtorch(WafPackage):
depends_on('boost@1.69.0: +graph+icu+mpi+numpy+coroutine+context+filesystem+python+serialization+system+thread+program_options cxxstd=17', type=('build', 'link', 'run')) # specialize boost (non-clingo, type=('build', 'link', 'run'))
depends_on('cereal', type=('build', 'link', 'run'))
depends_on('cppcheck', type=('build', 'link', 'run'))
depends_on('doxygen+graphviz', type=('build', 'link', 'run'))
depends_on('genpybind@ebrains', type=('build', 'link', 'run'))
depends_on('gflags', type=('build', 'link', 'run'))
depends_on('googletest@1.11.0:+gmock', type=('build', 'link', 'run')) # variadic templates needed
......@@ -165,7 +164,7 @@ class Hxtorch(WafPackage):
env = os.environ
env['LD_LIBRARY_PATH'] = env.get('WAF_CONFIGURE_LD_LIBRARY_PATH')
self.waf('configure', '--build-profile=release', *args)
self.waf('configure', '--build-profile=release', '--disable-doxygen', *args)
def build_args(self):
args = ['--keep', '--test-execnone', '-v']
......
......@@ -24,7 +24,6 @@ class PynnBrainscales(WafPackage):
depends_on('boost@1.69.0: +graph+icu+mpi+numpy+coroutine+context+filesystem+python+serialization+system+thread+program_options cxxstd=17', type=('build', 'link', 'run')) # specialize boost (non-clingo, type=('build', 'link', 'run'))
depends_on('cereal', type=('build', 'link', 'run'))
depends_on('cppcheck', type=('build', 'link', 'run'))
depends_on('doxygen+graphviz', type=('build', 'link', 'run'))
depends_on('genpybind@ebrains', type=('build', 'link', 'run'))
depends_on('gflags', type=('build', 'link', 'run'))
depends_on('googletest@1.11.0:+gmock', type=('build', 'link', 'run')) # variadic templates needed
......@@ -141,7 +140,7 @@ class PynnBrainscales(WafPackage):
env = os.environ
env['LD_LIBRARY_PATH'] = env.get('WAF_CONFIGURE_LD_LIBRARY_PATH')
self.waf('configure', '--build-profile=release', *args)
self.waf('configure', '--build-profile=release', '--disable-doxygen', *args)
def build_args(self):
args = ['--keep', '--test-execnone', '-v']
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment