Skip to content
Snippets Groups Projects
Commit a7a53ae4 authored by Philipp Rüssmann's avatar Philipp Rüssmann
Browse files

Initial gitlab-ci configuration with compilation step only

parent 48ea4a90
No related branches found
No related tags found
No related merge requests found
# docker image containing Developlement Tools and the current Intel compilers based on CentOS 7
image: iffregistry.fz-juelich.de/docker-images/centos7-intel-compilers
before_script:
# set +e prevents sourced scripts from aborting if single commands fail (GitLab CI sets `-e` by default)
- set +e && source compilervars.sh intel64 && set -e
# set environment variables to avoind stack size issue
- export OMP_NUM_THREADS=1
- export OMP_STACKSIZE=1g
- ulimit -s unlimited
stages:
- build
build:intel:
stage: build
script:
- cd prog && make
artifacts:
paths:
- prog/voronoi.exe
expire_in: 1 day
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