Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Sbalzarini Lab
S
Software
P
Parallel Computing
OpenFPM
openfpm_data
Commits
261069df
Commit
261069df
authored
Sep 01, 2017
by
incardon
Browse files
Fixing data compilation for dependencies
parent
30c12c36
Changes
2
Show whitespace changes
Inline
Side-by-side
Jenkinsfile
View file @
261069df
...
...
@@ -22,7 +22,7 @@ parallel (
stage
(
'build_nyu_val'
)
{
sh
"./build.sh $WORKSPACE $NODE_NAME VALGRIND"
sh
"./build.sh $WORKSPACE $NODE_NAME VALGRIND
$BRANCH_NAME
"
}
stage
(
'run_nyu_val'
)
...
...
@@ -54,7 +54,7 @@ parallel (
stage
(
'build_nyu_nor'
)
{
sh
"./build.sh $WORKSPACE $NODE_NAME NO"
sh
"./build.sh $WORKSPACE $NODE_NAME NO
$BRANCH_NAME
"
}
stage
(
'run_nyu_nor'
)
...
...
@@ -85,7 +85,7 @@ parallel (
stage
(
'build_nyu_se'
)
{
sh
"./build.sh $WORKSPACE $NODE_NAME SE"
sh
"./build.sh $WORKSPACE $NODE_NAME SE
$BRANCH_NAME
"
}
stage
(
'run_nyu_se'
)
...
...
@@ -117,7 +117,7 @@ parallel (
stage
(
'build_sb15_val'
)
{
sh
"echo $PATH && ./build.sh $WORKSPACE $NODE_NAME VALGRIND"
sh
"echo $PATH && ./build.sh $WORKSPACE $NODE_NAME VALGRIND
$BRANCH_NAME
"
}
stage
(
'run_sb15_val'
)
...
...
@@ -150,7 +150,7 @@ parallel (
stage
(
'build_sb15_nor'
)
{
sh
"./build.sh $WORKSPACE $NODE_NAME NO"
sh
"./build.sh $WORKSPACE $NODE_NAME NO
$BRANCH_NAME
"
}
stage
(
'run_sb15_nor'
)
...
...
@@ -182,7 +182,7 @@ parallel (
stage
(
'build_sb15_se'
)
{
sh
"./build.sh $WORKSPACE $NODE_NAME SE"
sh
"./build.sh $WORKSPACE $NODE_NAME SE
$BRANCH_NAME
"
}
stage
(
'run_sb15_se'
)
...
...
build.sh
View file @
261069df
...
...
@@ -19,7 +19,7 @@ sh ./autogen.sh
if
[
"
$2
"
==
"master"
]
;
then
options
=
"
$options
--disable-gpu"
elif
[
"
$2
"
==
"sbalzarini-mac-15"
]
;
then
options
=
"
$options
--with-libhilbert=
$HOME
/LIBHILBERT"
options
=
"
$options
--with-libhilbert=
$HOME
/
$4
/
LIBHILBERT"
fi
if
[
x
"
$3
"
==
x
"SE"
]
;
then
...
...
Write
Preview
Markdown
is supported
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