summaryrefslogtreecommitdiff
path: root/.gitlab-ci.yml
blob: 08a256c4bd905a205e9477959ee603b2f38bb342 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
variables:

stages:
  - container
  - build

build-container:
  stage: container
  image: docker:dind
  only:
    - master
  script:
    - docker build -f ci-gnurl/Dockerfile -t gnurl .

build-gnurl:
  stage: build
  image: gnurl:latest
  only:
    - master
  script:
    - ./buildconf ; ./configure ; make ; make -C tests test