Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
D
dune-gfe
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
Sander, Oliver
dune-gfe
Merge requests
!137
Various CI updates
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
Various CI updates
update-to-cmake-3-16
into
master
Overview
0
Commits
3
Pipelines
2
Changes
3
Merged
Sander, Oliver
requested to merge
update-to-cmake-3-16
into
master
1 year ago
Overview
0
Commits
3
Pipelines
2
Changes
3
Expand
0
0
Merge request reports
Compare
master
version 1
362c9a8e
1 year ago
master (base)
and
latest version
latest version
95740e81
3 commits,
1 year ago
version 1
362c9a8e
3 commits,
1 year ago
3 files
+
12
−
33
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
3
Search (e.g. *.vue) (Ctrl+P)
.gitlab-ci.yml
+
8
−
32
Options
@@ -9,26 +9,6 @@ before_script: &before
-
duneci-install-module https://gitlab.mn.tu-dresden.de/ag-sander/dune/dune-elasticity.git
-
duneci-install-module https://gitlab.mn.tu-dresden.de/iwr/dune-gmsh4
# ADOL-C's comparison operators prior to version 2.7.2 return `int` instead of `bool`,
# which confuses template meta-programming in dune-common...
.patch-dune-common
:
&patch-dune-common
-
|-
patch -d /duneci/modules/dune-common -p1 <<EOT
diff --git a/dune/common/densematrix.hh b/dune/common/densematrix.hh
index b03bbb0b..917ecef9 100644
--- a/dune/common/densematrix.hh
+++ b/dune/common/densematrix.hh
@@ -897,7 +897,7 @@ namespace Dune
for (size_type k=i+1; k<A.rows(); k++)
{
auto abs = fvmeta::absreal(A[k][i]);
- auto mask = abs > pivmax;
+ bool mask = abs > pivmax;
pivmax = Simd::cond(mask, abs, pivmax);
imax = Simd::cond(mask, simd_index_type(k), imax);
}
EOT
dune:2.9 gcc
:
variables
:
DUNECI_BRANCH
:
releases/2.9
@@ -37,24 +17,21 @@ dune:2.9 gcc:
-
*before
script
:
duneci-standard-test
dune:git gcc
:
image
:
registry.dune-project.org/docker/ci/dune:git-debian-1
0
-gcc-
8-17
dune:git gcc
-10 C++20
:
image
:
registry.dune-project.org/docker/ci/dune:git-debian-1
1
-gcc-
10-20
before_script
:
-
*patch-dune-common
-
*before
script
:
duneci-standard-test
dune:git clang
:
image
:
registry.dune-project.org/docker/ci/dune:git-
ubuntu-20.04
-clang-1
0
-20
dune:git clang
-11 C++20
:
image
:
registry.dune-project.org/docker/ci/dune:git-
debian-11
-clang-1
1
-20
before_script
:
-
*patch-dune-common
-
*before
script
:
duneci-standard-test
dune:git dune-parmg dune-vtk dune-curvedgeometry dune-curvedgrid dune-foamgrid gcc
:
image
:
registry.dune-project.org/docker/ci/dune:git-debian-1
0
-gcc-
8-17
dune:git dune-parmg dune-vtk dune-curvedgeometry dune-curvedgrid dune-foamgrid gcc
-10 C++20
:
image
:
registry.dune-project.org/docker/ci/dune:git-debian-1
1
-gcc-
10-20
before_script
:
-
*patch-dune-common
-
*before
-
duneci-install-module https://gitlab-ci-token:${CI_JOB_TOKEN}@gitlab.mn.tu-dresden.de/paraphase/dune-parmg.git
-
duneci-install-module https://gitlab-ci-token:${CI_JOB_TOKEN}@gitlab.mn.tu-dresden.de/spraetor/dune-vtk.git
@@ -63,10 +40,9 @@ dune:git dune-parmg dune-vtk dune-curvedgeometry dune-curvedgrid dune-foamgrid g
-
duneci-install-module https://gitlab.dune-project.org/extensions/dune-foamgrid.git
script
:
duneci-standard-test
dune:git dune-parmg dune-vtk dune-curvedgeometry dune-curvedgrid dune-foamgrid clang
:
image
:
registry.dune-project.org/docker/ci/dune:git-
ubuntu-20.04
-clang-1
0
-20
dune:git dune-parmg dune-vtk dune-curvedgeometry dune-curvedgrid dune-foamgrid clang
-11 C++20
:
image
:
registry.dune-project.org/docker/ci/dune:git-
debian-11
-clang-1
1
-20
before_script
:
-
*patch-dune-common
-
*before
-
duneci-install-module https://gitlab-ci-token:${CI_JOB_TOKEN}@gitlab.mn.tu-dresden.de/paraphase/dune-parmg.git
-
duneci-install-module https://gitlab-ci-token:${CI_JOB_TOKEN}@gitlab.mn.tu-dresden.de/spraetor/dune-vtk.git
Loading