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_io
Commits
7afbcf22
Commit
7afbcf22
authored
Dec 17, 2018
by
incardon
Browse files
Fixing IO project in the CI Farm
parent
ddc20825
Changes
2
Hide whitespace changes
Inline
Side-by-side
build.sh
View file @
7afbcf22
...
...
@@ -24,11 +24,6 @@ git clone git@git.mpi-cbg.de:openfpm/openfpm_vcluster.git openfpm_vcluster
cd
"
$1
/openfpm_io"
echo
"DEBUG"
ls
../openfpm_data/src/Graph
echo
"DEBUG"
if
[
x
"
$hostname
"
==
x
"cifarm-centos-node.mpi-cbg.de"
]
;
then
./install_MPI_mpich.sh
$HOME
/openfpm_dependencies/openfpm_io/
$branch
/ 4
...
...
script/discover_os
0 → 100755
View file @
7afbcf22
#! /bin/bash
function
discover_os
()
{
platform
=
unknown
if
[[
"
$OSTYPE
"
==
"linux-gnu"
]]
;
then
echo
-e
"We are on
\0
33[1;34m LINUX
\0
33[0m"
platform
=
linux
elif
[[
"
$OSTYPE
"
==
"linux"
]]
;
then
echo
-e
"We are on
\0
33[1;34m LINUX
\0
33[0m"
platform
=
linux
elif
[[
"
$OSTYPE
"
==
"darwin"
*
]]
;
then
echo
-e
"We are on
\0
33[1;34m MAC OSX
\0
33[0m"
platform
=
osx
elif
[[
"
$OSTYPE
"
==
"cygwin"
]]
;
then
echo
-e
"We are on
\0
33[1;34m CYGWIN
\0
33[0m"
platform
=
cygwin
elif
[[
"
$OSTYPE
"
==
"msys"
]]
;
then
echo
-e
"We are on
\0
33[1;34m Microsoft Window
\0
33[0m"
echo
"This platform is not supported"
exit
1
elif
[[
"
$OSTYPE
"
==
"win32"
]]
;
then
echo
-e
"We are on
\0
33[1;34m Microsoft Window
\0
33[0m"
echo
"This platform is not supported"
exit
1
elif
[[
"
$OSTYPE
"
==
"freebsd"
*
]]
;
then
echo
-e
"We are on
\0
33[1;34m FREEBSD
\0
33[0m"
echo
"This platform is not supported"
exit
1
else
echo
-e
"We are on an
\0
33[1;34m unknown OS
\0
33[0m"
echo
"This platform is not supported"
exit
1
fi
}
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