Skip to content
Snippets Groups Projects
Commit f23ffe40 authored by Anna Wellmann's avatar Anna Wellmann
Browse files

Merge branch 'develop' into testNodeNumberInBCs

parents 38b70a35 0a8d0d98
No related branches found
No related tags found
1 merge request!223Use the correct number of nodes for boundary conditions in GridGenerator
......@@ -10,6 +10,7 @@
"notskm.clang-tidy",
"streetsidesoftware.code-spell-checker"
],
"containerEnv": {"TZ": "${localEnv:TZ:Europe/Berlin}"},
"runArgs": ["--gpus","all", // remove this line in case you have no gpus available
"--hostname=${localEnv:HOSTNAME}"], // HOSTNAME needs to be known by the vscode environment. It is probably necessary to add "export HOSTNAME=<hostname>" to the config file of your host machine's bash.
......
......@@ -178,8 +178,7 @@ gcc_9_unit_tests:
- cd $CI_PROJECT_DIR/build
script:
- ctest
- ctest --rerun-failed --output-on-failure
- ctest --output-on-failure
###############################################################################
msvc_17_unit_tests:
......
......@@ -18,6 +18,10 @@
FROM nvidia/cuda:11.3.1-devel-ubuntu20.04
# timezone
ARG TZ
ENV TZ="$TZ"
ARG DEBIAN_FRONTEND=noninteractive
RUN apt-get update && \
apt-get install -y \
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment