amun-code/.gitlab-ci.yml

16 lines
346 B
YAML

image: debian
stages:
- build
build:
stage: build
before_script:
- apt-get update
- apt-get install make gfortran libhdf5-dev
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