Browse Source

Try stages...for now my jobs are called like the stages I use...

1.0.2
Georg Hopp 10 years ago
parent
commit
babfe67250
  1. 9
      .gitlab-ci.yml

9
.gitlab-ci.yml

@ -1,6 +1,15 @@
stages:
- build
- test
build: build:
stage: build
script: script:
- ./bootstrap - ./bootstrap
- ./configure --enable-gcov - ./configure --enable-gcov
- make - make
test:
stage: test
script:
- make coverage-html - make coverage-html
Loading…
Cancel
Save