Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
D
DIVINE
Manage
Activity
Members
Code
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Analyze
Contributor analytics
CI/CD analytics
Repository analytics
Insights
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
paradise
mirror
DIVINE
Commits
0eb2e6e8
There was an error fetching the commit references. Please try again later.
Commit
0eb2e6e8
authored
5 years ago
by
Vladimír Štill
Browse files
Options
Downloads
Patches
Plain Diff
CI: Add CI config
parent
b6424e12
No related branches found
No related tags found
Loading
Pipeline
#
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
.gitlab-ci.yml
+36
-0
36 additions, 0 deletions
.gitlab-ci.yml
with
36 additions
and
0 deletions
.gitlab-ci.yml
0 → 100644
+
36
−
0
View file @
0eb2e6e8
# common configuration parts
.common
:
&common
before_script
:
-
rm -rf .git
# ups
tags
:
-
shared-fi
.debian
:
&debian
image
:
cxx:latest
script
:
-
apt-get update >& apt.log
-
make prerequisites >& prerequisites.log
-
make toolchain >& toolchain.log
-
make CMAKE_EXTRA="-DOPT_Z3=OFF" >& build.log
-
make unit >& unit.log
-
make functional >& functional.log
artifacts
:
paths
:
-
"
*.log"
expire_in
:
1 month
when
:
always
# actual builds
build_clang
:
<<
:
*common
<<
:
*debian
variables
:
CC
:
"
clang"
CXX
:
"
clang++"
build_gcc
:
<<
:
*common
<<
:
*debian
variables
:
CC
:
"
gcc"
CXX
:
"
g++"
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