aboutsummaryrefslogtreecommitdiff
path: root/.gitlab-ci.yml
blob: 54bf0eec6f3da921707f2ec6454c4b3d79dbb83c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
variables:

stages:
  - container
  - build

build-container:
  stage: container
  image: docker:dind
  only:
    - master
  script:
    - docker build -f Dockerfile -t gnunet-python .

# For now just build with python3
# language: python
# python:
#    - "3.6"
#    - "2.7"

build-gnunet-python:
  stage: build
  image: gnunet-python:latest
  only:
    - master
  script:
    - pip3 install --no-deps --verbose .