aboutsummaryrefslogtreecommitdiff
path: root/.gitlab-ci.yml
blob: af2008a79e6a0a95a83e91a02e4838476708cffc (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