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:
stage: build
script:
- ./bootstrap
- ./configure --enable-gcov
- make
test:
stage: test
script:
- make coverage-html
Loading…
Cancel
Save