Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
KiT-RT
KiT-RT
Commits
14b50899
Commit
14b50899
authored
Mar 28, 2020
by
Jannick Wolters
Browse files
updated runner to use different image
parent
157cc509
Changes
3
Hide whitespace changes
Inline
Side-by-side
.gitlab-ci.yml
View file @
14b50899
image
:
ubuntu:18.04
image
:
conanio/gcc9
stages
:
-
build
...
...
@@ -10,8 +10,8 @@ build:
paths
:
-
code/bin
script
:
-
apt-get update
-
DEBIAN_FRONTEND=noninteractive apt-get install -y
g++ cmake
libopenmpi-dev libblas-dev liblapack-dev git libvtk7
.1
ninja-build
-
sudo
apt-get update
-
sudo
DEBIAN_FRONTEND=noninteractive apt-get install -y libopenmpi-dev libblas-dev liblapack-dev git libvtk7
-dev
ninja-build
-
git submodule update --init --recursive
-
cd code/build/debug
-
cmake -G Ninja -DCMAKE_BUILD_TYPE=Debug -DBUILD_TESTING=True -DCMAKE_EXPORT_COMPILE_COMMANDS=True ../../
...
...
README.md
View file @
14b50899
...
...
@@ -10,8 +10,8 @@ TBD
## Build
### Required dependencies
-
Compiler with C++20 support
-
cmake >= v3.
5
-
Compiler with C++20 support
(e.g. g++ v9)
-
cmake >= v3.
12.4
-
LAPACK
-
OpenMP
-
MPI
...
...
@@ -24,8 +24,7 @@ Note that an **active internet connection is required for the first build** in o
For the first build only, download all submodules:
```
bash
git submodule init
git submodule update
git submodule update
--init
--recursive
```
### Compile the code
...
...
code/CMakeLists.txt
View file @
14b50899
cmake_minimum_required
(
VERSION 3.
5
)
cmake_minimum_required
(
VERSION 3.
12.4
)
project
(
RTSN LANGUAGES CXX VERSION 0.0.1
)
set
(
CMAKE_CXX_STANDARD 20
)
set
(
CMAKE_CXX_STANDARD_REQUIRED ON
)
...
...
Write
Preview
Supports
Markdown
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