Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
openfpm_data
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Sbalzarini Lab
Software
Parallel Computing
OpenFPM
openfpm_data
Commits
7afbcf22
Commit
7afbcf22
authored
6 years ago
by
Pietro Incardona
Browse files
Options
Downloads
Patches
Plain Diff
Fixing IO project in the CI Farm
parent
ddc20825
No related branches found
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
build.sh
+0
-5
0 additions, 5 deletions
build.sh
script/discover_os
+37
-0
37 additions, 0 deletions
script/discover_os
with
37 additions
and
5 deletions
build.sh
+
0
−
5
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
...
...
This diff is collapsed.
Click to expand it.
script/discover_os
0 → 100755
+
37
−
0
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
}
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
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