Skip to content
Snippets Groups Projects
Commit a535ddb5 authored by Roland Jansky's avatar Roland Jansky
Browse files

Merge branch 'revert-5b4d74b1' into 'master'

Revert "Revert "trying to add first CI and docker image building""

See merge request faser/calypso!10
parents a034a412 0861d497
No related branches found
No related tags found
No related merge requests found
variables:
# all submodules will be cloned recursively upon start of CI job
GIT_SUBMODULE_STRATEGY: recursive
GIT_SSL_NO_VERIFY: "true"
stages:
- build
##########################
# BUILD stage #
##########################
build_image:
# description: triggers a build of the project as a Docker image,
# each branch will have an individual Docker image that will be used
# in the following stages of the pipeline for testing the code
stage: build
tags:
- docker-image-build
script:
- ignore
# The release set in this Dockerfile defines the release of the whole project
# and is parsed by every setup script and by the installation instructions.
# Be aware of this effect if you edit the release here!
FROM atlas/atlas_external_cvmfs
ADD . /calypso
WORKDIR /build
RUN setupATLAS && \
asetup master,latest,Athena && \
cmake -DCMAKE_INSTALL_PREFIX=../run ../calypso && \
make
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment