From 0416e1af89df66bc5a2c66fa012b12da929611fd Mon Sep 17 00:00:00 2001 From: Yeongdo Park Date: Mon, 5 Aug 2019 02:43:42 +0000 Subject: [PATCH] Add GitLab CI Configuration --- .gitlab-ci.yml | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 .gitlab-ci.yml diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml new file mode 100644 index 0000000..15c108d --- /dev/null +++ b/.gitlab-ci.yml @@ -0,0 +1,21 @@ +image: registry.gitlab.com/flame-dns/incomp-flame-post + +build: + stage: build + script: + - cd code + - rm -f m_terms.f90 + - make + artifacts: + paths: + - x-edge-cold-bc-uPrime-hybrid + # depending on your build setup it's most likely a good idea to cache outputs to reduce the build time + # cache: + # paths: + # - "*.o" + +# run tests using the binary built before +test: + stage: test + script: + - make test \ No newline at end of file