amun-code/.gitlab-ci.yml

16 lines
355 B
YAML
Raw Normal View History

2019-10-04 20:05:13 +00:00
image: debian
stages:
- build
build:
stage: build
2019-10-04 20:12:31 +00:00
before_script:
2019-10-04 20:18:41 +00:00
- apt-get -q update
- apt-get -q -y install make gfortran libhdf5-dev
2019-10-04 20:12:31 +00:00
2019-10-04 20:05:13 +00:00
script: cd ./build/ && cp -al make.default make.config && cp -al ./hosts/default ./hosts/$HOSTNAME && cd ../ && make -C ./build > build.log
artifacts:
paths:
- build.log
expire_in: 20 minutes