Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
D
dune-uggrid
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
Service Desk
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
staging
dune-uggrid
Merge requests
!6
.gitlab-ci.yml: Switch to CMake
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
.gitlab-ci.yml: Switch to CMake
ansgar/dune-uggrid:master
into
master
Overview
0
Commits
1
Pipelines
0
Changes
1
Merged
Ansgar Burchardt
requested to merge
ansgar/dune-uggrid:master
into
master
8 years ago
Overview
0
Commits
1
Pipelines
0
Changes
1
Expand
0
0
Merge request reports
Compare
master
master (base)
and
latest version
latest version
57b8f972
1 commit,
8 years ago
1 file
+
11
−
23
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
.gitlab-ci.yml
+
11
−
23
Options
variables
:
configure_flags
:
"
--enable-dune
--enable-parallel
--enable-maintainer-mode"
debian:8--gcc
:
image
:
duneci/base:8
script
:
-
autoreconf -si
-
./configure ${configure_flags} && make && make check
debian:9--gcc
:
image
:
duneci/base:9
script
:
-
autoreconf -si
-
./configure ${configure_flags} && make && make check
debian:8--clang
:
image
:
duneci/base:8
---
dune:git--clang
:
image
:
duneci/dune:git
script
:
-
autoreconf -si
-
./configure ${configure_flags} CXX=/usr/bin/clang++ && make && make check
-
dunecontrol --opts=/duneci/opts.clang --current all
-
dunecontrol --current make build_tests
-
dunecontrol --current make test
d
ebian:9--clang
:
image
:
duneci/
base:9
d
une:git--gcc
:
image
:
duneci/
dune:git
script
:
-
autoreconf -si
-
./configure ${configure_flags} CXX=/usr/bin/clang++ && make && make check
-
dunecontrol --opts=/duneci/opts.gcc --current all
-
dunecontrol --current make build_tests
-
dunecontrol --current make test
Loading