Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
tools
frackit
Commits
20512eec
Commit
20512eec
authored
Nov 13, 2020
by
Dennis Gläser
Browse files
[ci] rearrange jobs
parent
68476cae
Pipeline
#2410
passed with stage
in 15 minutes and 51 seconds
Changes
2
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
.ci_base.yml
View file @
20512eec
# base for jobs, all run the same script
.common
:
script
:
./.ci_run_tests
# base for merge requests that affect the core/tests
.testbeforemerge
:
only
:
refs
:
-
merge_requests
.ubuntu18.04 gcc-7
:
extends
:
.common
variables
:
CI_COMPILER
:
gcc
CI_COMPILER_VERSION
:
7
.ubuntu18.04 gcc-8
:
extends
:
.common
variables
:
CI_COMPILER
:
gcc
CI_COMPILER_VERSION
:
8
.ubuntu18.04 clang-5
:
extends
:
.common
variables
:
CI_COMPILER
:
clang
CI_COMPILER_VERSION
:
5
script
:
./.ci_run_tests
except
:
changes
:
-
"
*.md"
-
doc/*
.ubuntu18.04 clang-6
:
extends
:
.common
variables
:
CI_COMPILER
:
clang
CI_COMPILER_VERSION
:
6
# build pipeline for docu
builddoc
:
script
:
./.ci_build_doc
only
:
changes
:
-
doc/*
.ubuntu18.04 clang-7
:
extends
:
.common
variables
:
CI_COMPILER
:
clang
CI_COMPILER_VERSION
:
7
# noop pipeline for changes to markdown files
markdownedits
:
script
:
echo "Only markdown files edited. Skipping pipelines."
only
:
changes
:
-
"
*.md"
.gitlab-ci.yml
View file @
20512eec
include
:
.ci_base.yml
include
:
-
template
:
'
Workflows/MergeRequest-Pipelines.gitlab-ci.yml'
-
local
:
.ci_base.yml
# using OpenCascade 7.3
ubuntu18.04 gcc-7 occ7.3
:
extends
:
-
.ubuntu18.04 gcc-7
-
.testbeforemerge
image
:
git.iws.uni-stuttgart.de:4567/tools/frackit/ubuntu18.04_occ7.3:latest
extends
:
.testbeforemerge
variables
:
CI_COMPILER
:
gcc
CI_COMPILER_VERSION
:
7
ubuntu18.04 gcc-8 occ7.3
:
extends
:
-
.ubuntu18.04 gcc-8
-
.testbeforemerge
image
:
git.iws.uni-stuttgart.de:4567/tools/frackit/ubuntu18.04_occ7.3:latest
extends
:
.testbeforemerge
variables
:
CI_COMPILER
:
gcc
CI_COMPILER_VERSION
:
8
ubuntu18.04 clang-6 occ7.3
:
image
:
git.iws.uni-stuttgart.de:4567/tools/frackit/ubuntu18.04_occ7.3:latest
extends
:
.testbeforemerge
variables
:
CI_COMPILER
:
clang
CI_COMPILER_VERSION
:
6
Write
Preview
Supports
Markdown
0%
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!
Cancel
Please
register
or
sign in
to comment