22 lines
No EOL
466 B
YAML
22 lines
No EOL
466 B
YAML
image: registry.gitlab.com/flame-dns/incomp-flame-post
|
|
|
|
build:
|
|
stage: build
|
|
script:
|
|
- cd code
|
|
- rm -f m_terms.f90
|
|
- make
|
|
artifacts:
|
|
paths:
|
|
- code/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:
|
|
- cd code
|
|
- make test |