Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
ebrains-spack-builds
Manage
Activity
Members
Labels
Plan
Issues
38
Issue boards
Milestones
Wiki
Code
Merge requests
25
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Container Registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
EBRAINS RI
Tech Hub
Platform
EBRAINS Software Distribution
ebrains-spack-builds
Commits
06b55c28
Commit
06b55c28
authored
2 years ago
by
Eric Müller
Browse files
Options
Downloads
Patches
Plain Diff
BrainScaleS: Add tests
parent
8cdea723
No related branches found
Branches containing commit
No related tags found
3 merge requests
!253
update branch
,
!252
create new experimental release
,
!244
Update BrainScaleS packages and py-torch
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
packages/hxtorch/package.py
+10
-0
10 additions, 0 deletions
packages/hxtorch/package.py
packages/oppulance/package.py
+6
-0
6 additions, 0 deletions
packages/oppulance/package.py
packages/pynn-brainscales/package.py
+10
-0
10 additions, 0 deletions
packages/pynn-brainscales/package.py
with
26 additions
and
0 deletions
packages/hxtorch/package.py
+
10
−
0
View file @
06b55c28
...
@@ -166,5 +166,15 @@ class Hxtorch(WafPackage):
...
@@ -166,5 +166,15 @@ class Hxtorch(WafPackage):
def
build_args
(
self
):
def
build_args
(
self
):
args
=
[
'
--keep
'
,
'
--test-execnone
'
,
'
-v
'
]
args
=
[
'
--keep
'
,
'
--test-execnone
'
,
'
-v
'
]
return
args
def
build_test
(
self
):
self
.
waf
(
'
install
'
,
'
--test-execall
'
)
def
install_args
(
self
):
args
=
[
'
--test-execnone
'
]
return
args
return
args
def
install_test
(
self
):
with
working_dir
(
'
spack-test
'
,
create
=
True
):
python
(
'
-c
'
,
'
import hxtorch; print(hxtorch.__file__)
'
)
This diff is collapsed.
Click to expand it.
packages/oppulance/package.py
+
6
−
0
View file @
06b55c28
...
@@ -85,3 +85,9 @@ class Oppulance(Package):
...
@@ -85,3 +85,9 @@ class Oppulance(Package):
bash
(
'
ci/00_build_install_libstdc++.sh
'
)
bash
(
'
ci/00_build_install_libstdc++.sh
'
)
mkdirp
(
spec
.
prefix
)
mkdirp
(
spec
.
prefix
)
install_tree
(
'
install/.
'
,
spec
.
prefix
)
install_tree
(
'
install/.
'
,
spec
.
prefix
)
@run_after
(
'
install
'
)
@on_package_attributes
(
run_tests
=
True
)
def
check_install
(
self
):
ppu_gcc
=
which
(
'
powerpc-ppu-gcc
'
)
ppu_gcc
(
'
--version
'
)
This diff is collapsed.
Click to expand it.
packages/pynn-brainscales/package.py
+
10
−
0
View file @
06b55c28
...
@@ -145,5 +145,15 @@ class PynnBrainscales(WafPackage):
...
@@ -145,5 +145,15 @@ class PynnBrainscales(WafPackage):
def
build_args
(
self
):
def
build_args
(
self
):
args
=
[
'
--keep
'
,
'
--test-execnone
'
,
'
-v
'
]
args
=
[
'
--keep
'
,
'
--test-execnone
'
,
'
-v
'
]
return
args
def
build_test
(
self
):
self
.
waf
(
'
install
'
,
'
--test-execall
'
)
def
install_args
(
self
):
args
=
[
'
--test-execnone
'
]
return
args
return
args
def
install_test
(
self
):
with
working_dir
(
'
spack-test
'
,
create
=
True
):
python
(
'
-c
'
,
'
import pynn_brainscales; print(pynn_brainscales.__file__)
'
)
This diff is collapsed.
Click to expand it.
Preview
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment