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
FSL
conda
fsl-ci-rules
Commits
4b03452c
Commit
4b03452c
authored
Sep 22, 2021
by
Paul McCarthy
🚵
Browse files
TEST: Fix/adjust template create tests
parent
bb661c62
Changes
3
Hide whitespace changes
Inline
Side-by-side
fsl_ci/tests/recipes/cuda/meta.yaml
View file @
4b03452c
...
...
@@ -2,20 +2,27 @@
# The project git repository is: https://git.fmrib.ox.ac.uk/fsl/ptx2.git
# The git repository for this conda recipe is: https://git.fmrib.ox.ac.uk/fsl/conda/fsl-ptx2.git
{
%
set name = 'fsl-ptx2' %
}
{
%
set version = '@@ project_version @@' %
}
{
%
set repository = 'https
:
//git.fmrib.ox.ac.uk/fsl/ptx2.git' %
}
{
%
set build = '0' %
}
# Note that multiple conda packages are built from
# this recipe - one package is built for each
# supported CUDA version, and named
# "<name>-cuda-X.Y", where X.Y is the CUDA version
# that the package was compiled against.
# The CUDA_VER environment variable must be set when
# a CUDA project is built. CUDA_VER should contain
# the major.minor CUDA toolkit version. CUDA_VER is
# pre-set in the conda-forge and FSL development
# CUDA build docker images.
# CUDA build docker images, but needs to be explicitly
# set when building locally.
{
%
set cuda_version = os.environ
[
"
CUDA_VER"
]
%
}
{
%
set cuda_label = '-cuda-' + cuda_version %
}
{
%
set name = 'fsl-ptx2' + cuda_label %
}
{
%
set version = '@@ project_version @@' %
}
{
%
set repository = 'https
:
//git.fmrib.ox.ac.uk/fsl/ptx2.git' %
}
{
%
set build = '0' %
}
package
:
name
:
{{
name
+ cuda_label
}}
name
:
{{
name
}}
version
:
{{
version
}}
source
:
...
...
@@ -36,12 +43,20 @@ requirements:
-
fsl-base >=@@ fsl_base_version @@
build
:
# Different versions of nvcc need
# different versions of gcc
# different versions of gcc. This is
# outlined in the "System requirements"
# section of the CUDA installation
# guide for each CUDA version, e.g.:
# https://docs.nvidia.com/cuda/cuda-installation-guide-linux/index.html
{
%
if cuda_version in ("9.2"
,
"
10.0"
) %
}
-
{{
compiler("cxx")
}}
7.*
# [linux]
{
%
elif cuda_version in ("10.1"
,
"
10.2"
) %
}
-
{{
compiler("cxx")
}}
8.*
# [linux]
{
%
elif cuda_version in ("11.0"
,
"
11.1"
) %
}
{
%
elif cuda_version in ("11.0"
,
"
11.1"
,
"
11.2"
,
"
11.3"
) %
}
-
{{
compiler("cxx")
}}
9.*
# [linux]
{
%
elif cuda_version in ("11.4") %
}
-
{{
compiler("cxx")
}}
11.*
# [linux]
{
%
else %
}
-
{{
compiler("cxx")
}}
# [linux]
{
%
endif %
}
-
make
fsl_ci/tests/recipes/tcl/meta.yaml
View file @
4b03452c
...
...
@@ -2,10 +2,10 @@
# The project git repository is: https://git.fmrib.ox.ac.uk/fsl/feat5.git
# The git repository for this conda recipe is: https://git.fmrib.ox.ac.uk/fsl/conda/fsl-feat5.git
{
%
set name
= 'fsl-feat5' %
}
{
%
set version
= '@@ project_version @@' %
}
{
%
set repository
= 'https
:
//git.fmrib.ox.ac.uk/fsl/feat5.git' %
}
{
%
set build
= '0' %
}
{
%
set name = 'fsl-feat5' %
}
{
%
set version = '@@ project_version @@' %
}
{
%
set repository = 'https
:
//git.fmrib.ox.ac.uk/fsl/feat5.git' %
}
{
%
set build = '0' %
}
package
:
name
:
{{
name
}}
...
...
@@ -26,7 +26,7 @@ build:
requirements
:
host
:
-
fsl-base >=
2108.1
-
fsl-base >=
@@ fsl_base_version @@
build
:
-
{{
compiler("cxx")
}}
-
make
fsl_ci/tests/test_create_conda_recipe.py
View file @
4b03452c
...
...
@@ -10,6 +10,7 @@ import os.path as op
import
itertools
as
it
import
contextlib
as
ctxlib
import
shlex
import
difflib
import
shutil
from
unittest
import
mock
import
jinja2
as
j2
...
...
@@ -48,35 +49,37 @@ def environment():
def
compare_directories
(
project
,
benchmarkdir
,
directory
):
tkn
=
token
().
strip
(
'"'
).
strip
()
basever
=
get_project_version
(
'fsl/base'
,
GITLAB_URL
,
tkn
)
projver
=
get_project_version
(
project
,
GITLAB_URL
,
tkn
)
tvars
=
{
'fsl_base_version'
:
basever
,
'project_version'
:
projver
}
tkn
=
token
().
strip
(
'"'
).
strip
()
basever
=
get_project_version
(
'fsl/base'
,
GITLAB_URL
,
tkn
)
projver
=
get_project_version
(
project
,
GITLAB_URL
,
tkn
)
tvars
=
{
'fsl_base_version'
:
basever
,
'project_version'
:
projver
}
directory
=
op
.
abspath
(
directory
)
with
tempdir
():
shutil
.
copytree
(
benchmarkdir
,
'benchmark'
)
with
indir
(
'benchmark'
):
benchmarkdir
=
op
.
abspath
(
'benchmark'
)
with
indir
(
benchmarkdir
):
filenames
=
[]
for
dirpath
,
_
,
dirfiles
in
os
.
walk
(
''
):
for
dirpath
,
_
,
dirfiles
in
os
.
walk
(
'.'
):
if
'.git'
in
dirpath
:
continue
for
f
in
dirfiles
:
for
f
name
in
dirfiles
:
loader
=
j2
.
FileSystemLoader
(
'.'
)
env
=
j2
.
Environment
(
loader
=
loader
,
block_start_string
=
'@@'
,
block_end_string
=
'@@'
,
variable_start_string
=
'@='
,
variable_end_string
=
'=@'
)
with
open
(
f
,
'rt'
)
as
f
:
template
=
env
.
from_string
(
f
.
read
())
with
open
(
f
,
'wt'
)
as
f
:
block_start_string
=
'@='
,
block_end_string
=
'=@'
,
variable_start_string
=
'@@'
,
variable_end_string
=
'@@'
)
template
=
env
.
get_template
(
fname
)
with
open
(
fname
,
'wt'
)
as
f
:
f
.
write
(
template
.
render
(
**
tvars
))
filenames
.
extend
([
op
.
join
(
dirpath
,
f
)
for
f
in
dirfiles
])
for
filename
in
filenames
:
with
open
(
op
.
join
(
benchmarkdir
,
filename
),
'rt'
)
as
f
:
exp
=
f
.
read
()
with
open
(
op
.
join
(
directory
,
filename
),
'rt'
)
as
f
:
got
=
f
.
read
()
assert
exp
.
strip
()
==
got
.
strip
()
for
filename
in
filenames
:
with
open
(
op
.
join
(
benchmarkdir
,
filename
),
'rt'
)
as
f
:
exp
=
f
.
read
()
with
open
(
op
.
join
(
directory
,
filename
),
'rt'
)
as
f
:
got
=
f
.
read
()
assert
exp
.
strip
()
==
got
.
strip
()
def
test_create_cpp_conda_recipe
():
...
...
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