Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
maestro-core
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container registry
Model registry
Analyze
Contributor 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
maestro
maestro-core
Commits
e43784bd
Commit
e43784bd
authored
6 years ago
by
Utz-Uwe Haus
Browse files
Options
Downloads
Patches
Plain Diff
add CI config
parent
d62c0817
No related branches found
No related tags found
No related merge requests found
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
.gitlab-ci.yml
+40
-0
40 additions, 0 deletions
.gitlab-ci.yml
with
40 additions
and
0 deletions
.gitlab-ci.yml
0 → 100644
+
40
−
0
View file @
e43784bd
# This file is a template, and might need editing before it works on your project.
# use the official gcc image, based on debian
# can use verions as well, like gcc:5.2
# see https://hub.docker.com/_/gcc/
image
:
debian
# install the necessary build tools when needed
stages
:
-
build-and-test
build
:
only
:
refs
:
-
master
-
devel
stage
:
build-and-test
before_script
:
-
apt-get -y update
-
apt-get -y install make build-essential libtool autoconf automake gfortran doxygen sudo ssh libnuma-dev graphviz git libyaml-dev
script
:
-
git checkout -B "$CI_COMMIT_REF_NAME" "$CI_COMMIT_SHA"
-
autoreconf -ivf
-
./configure
-
find . -type d | xargs chmod o+rwx
# TMPDIR is not set in docker images
# HOMEDIR is sometimes set to /nonexistent
-
make check
-
make dist
artifacts
:
when
:
always
paths
:
-
tests/test-suite.log
-
maestro-core-*.tar.gz
# depending on your build setup it's most likely a good idea to cache outputs to reduce the build time
#cache:
# key: "$CI_JOB_NAME-$CI_COMMIT_REF_SLUG"
# paths:
# - ".libs/*" "**/.la"
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