Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
D
dorie
Project overview
Project overview
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
28
Issues
28
List
Boards
Labels
Milestones
Merge Requests
13
Merge Requests
13
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Commits
Issue Boards
Open sidebar
dorie
dorie
Commits
8ab2f6c3
Commit
8ab2f6c3
authored
Oct 22, 2016
by
Dion Haefner
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
tweaked installation
parent
d3f18aaa
Changes
5
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
7 additions
and
28 deletions
+7
-28
.gitlab-ci.yml
.gitlab-ci.yml
+2
-2
README.md
README.md
+5
-4
python/CMakeLists.txt
python/CMakeLists.txt
+0
-1
python/doc/requirements.txt
python/doc/requirements.txt
+0
-13
python/doc/setup.py
python/doc/setup.py
+0
-8
No files found.
.gitlab-ci.yml
View file @
8ab2f6c3
...
...
@@ -12,7 +12,7 @@ stages:
main_job
:
script
:
-
./dune-common/bin/dunecontrol --only=dorie all
-
./dune-common/bin/dunecontrol --only=dorie make install
-
export PATH=/opt/dune/dorie/build-cmake/bin:$PATH
-
ARGS="--output-on-failure" ./dune-common/bin/dunecontrol --only=dorie make test
stage
:
main
...
...
@@ -21,6 +21,6 @@ update_dune_job:
-
./dune-common/bin/dunecontrol update ||
true
-
./dune-common/bin/dunecontrol exec "rm -rf build-cmake"
-
./dune-common/bin/dunecontrol all
-
./dune-common/bin/dunecontrol make install
-
export PATH=/opt/dune/dorie/build-cmake/bin:$PATH
-
ARGS="--output-on-failure" ./dune-common/bin/dunecontrol --only=dorie make test
stage
:
main
README.md
View file @
8ab2f6c3
...
...
@@ -76,7 +76,7 @@ Depending on your system configuration, there will be more packages necessary to
|
[
dune-python
](
https://gitlab.dune-project.org/quality/dune-python
)
| releases/2.4
|
[
dune-testtools
](
https://gitlab.dune-project.org/quality/dune-testtools
)
| releases/2.4
If you also want to build the documentation, you will additionally need to install Doxygen.
If you also want to build the documentation, you will additionally need to install Doxygen
, Sphinx and Breathe
.
### Manual Installation on Ubuntu
The following instructions follow the basic installation on a fresh Ubuntu system and are similarly executed to create the DORiE Docker image.
...
...
@@ -84,14 +84,15 @@ The following instructions follow the basic installation on a fresh Ubuntu syste
1.
Install third party packages:
apt update
apt install autoconf bison cmake
doxygen
flex gcc-5 g++-5 gfortran-5
\
apt install autoconf bison cmake flex gcc-5 g++-5 gfortran-5
\
git libatlas-base-dev libfftw3-dev libfftw3-mpi-dev
\
libfreetype6-dev libhdf5-mpi-dev libopenmpi-dev libpng-dev
\
libsuperlu-dev libxft-dev python3-dev python3-pip
libsuperlu-dev libxft-dev python-dev python-pip python-sphinx
\
python-breathe doxygen
2.
Install the necessary Python packages using
`pip`
:
python
3
-m pip install virtualenv
python -m pip install virtualenv
3.
Clone the specified version of UG into a suitable folder on your machine. Install it by calling
...
...
python/CMakeLists.txt
View file @
8ab2f6c3
...
...
@@ -6,7 +6,6 @@ endfunction()
set
(
python_paths
""
)
install_python_package
(
"doc"
python_paths
)
install_python_package
(
"utilities"
python_paths
)
install_python_package
(
"parscraper"
python_paths
)
add_subdirectory
(
parfield/wrapper
)
...
...
python/doc/requirements.txt
deleted
100644 → 0
View file @
d3f18aaa
alabaster
Babel
breathe
docutils
Jinja2
MarkupSafe
Pygments
pytz
six
snowballstemmer
Sphinx
sphinx-rtd-theme
wheel
python/doc/setup.py
deleted
100644 → 0
View file @
d3f18aaa
#!/usr/bin/env python
# -*- coding: utf-8 -*-
import
sys
from
setuptools
import
setup
# do nothing, just install requirements
setup
(
name
=
'dorie.doc'
)
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