.gitlab-ci.yml 137 Bytes
Newer Older
Andrey Zhdanov's avatar
Andrey Zhdanov committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
image: generic-c

stages:
  - build
  - test

build:
  stage: build
  script:
    - make

test:
  stage: test 
  script:
    - make test