Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
O
openfpm_io
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Locked Files
Issues
0
Issues
0
List
Boards
Labels
Service Desk
Milestones
Merge Requests
0
Merge Requests
0
Requirements
Requirements
List
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Security & Compliance
Security & Compliance
Dependency List
License Compliance
Operations
Operations
Environments
Packages & Registries
Packages & Registries
Package Registry
Analytics
Analytics
CI / CD
Code Review
Insights
Issue
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
argupta
openfpm_io
Commits
7afbcf22
Commit
7afbcf22
authored
Dec 17, 2018
by
incardon
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fixing IO project in the CI Farm
parent
ddc20825
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
37 additions
and
5 deletions
+37
-5
build.sh
build.sh
+0
-5
script/discover_os
script/discover_os
+37
-0
No files found.
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