Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
dumux
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
Container Registry
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
dumux-repositories
dumux
Commits
f7270f29
Commit
f7270f29
authored
4 years ago
by
Dennis Gläser
Browse files
Options
Downloads
Patches
Plain Diff
[ci] add yml file for ci config
parent
65e2210f
No related branches found
Branches containing commit
No related tags found
Tags containing commit
1 merge request
!2408
Feature/ci integration
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
.gitlab-ci.yml
+68
-0
68 additions, 0 deletions
.gitlab-ci.yml
with
68 additions
and
0 deletions
.gitlab-ci.yml
0 → 100644
+
68
−
0
View file @
f7270f29
stages
:
-
trigger pipelines
-
trigger downstream modules
variables
:
IMAGE_REGISTRY_URL
:
$CI_REGISTRY/dumux-repositories/dumux-docker-ci
# rules for pipelines:
# - pipelines are triggered for commits to master, tags, merge requests
# - Within merge requests, we require to start the pipeline manually
# by clicking play for the trigger
.default-trigger
:
stage
:
trigger pipelines
trigger
:
include
:
-
local
:
.gitlab-ci/default.yml
strategy
:
depend
rules
:
-
if
:
$CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH
-
if
:
$CI_PIPELINE_SOURCE == "pipeline"
-
if
:
$CI_PIPELINE_SOURCE == "merge_request_event"
when
:
manual
.scheduled-trigger
:
extends
:
.default-trigger
rules
:
-
if
:
$CI_PIPELINE_SOURCE == "schedule"
###################################
# pipelines with different setups #
full-dune-2.7-gcc
:
extends
:
.default-trigger
variables
:
IMAGE
:
$IMAGE_REGISTRY_URL/full:dune-2.7-gcc-ubuntu-20.04
minimal-dune-2.7-gcc
:
extends
:
.default-trigger
variables
:
IMAGE
:
$IMAGE_REGISTRY_URL/minimal:dune-2.7-gcc-ubuntu-20.04
full-dune-2.7-clang
:
extends
:
.default-trigger
variables
:
IMAGE
:
$IMAGE_REGISTRY_URL/full:dune-2.7-clang-ubuntu-20.04
##################################
# additional scheduled pipelines #
full-dune-master-gcc
:
extends
:
.scheduled-trigger
variables
:
IMAGE
:
$IMAGE_REGISTRY_URL/full:dune-master-gcc-ubuntu-20.04
full-dune-master-clang
:
extends
:
.scheduled-trigger
variables
:
IMAGE
:
$IMAGE_REGISTRY_URL/full:dune-master-clang-ubuntu-20.04
###################################
# triggers for downstream modules #
trigger lecture
:
stage
:
trigger downstream modules
trigger
:
project
:
dumux-repositories/dumux-lecture
# TODO: replace by master once development in lecture is finished
branch
:
feature/test-dumux-trigger
strategy
:
depend
variables
:
DUMUX_BRANCH_NAME
:
$CI_COMMIT_BRANCH
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment