Add GitLab CI Configuration
This commit is contained in:
parent
8d41467494
commit
0416e1af89
1 changed files with 21 additions and 0 deletions
21
.gitlab-ci.yml
Normal file
21
.gitlab-ci.yml
Normal file
|
|
@ -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
|
||||
Loading…
Add table
Reference in a new issue