aboutsummaryrefslogtreecommitdiff
path: root/.gitlab-ci.yml
blob: 60dd4dc9e6e1951803a732ad4050d68028b2243b (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
28
29
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
  install:
    - pip install dbus
    - pip install PyGObject
script: python setup.py