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

before_script:
- apt-get update -y
- apt-get install -y -qq python-dev python-pip

# Deps for running tests
- apt-get install -y -qq cmdtest

# Deps to run lorry tests
- apt-get install -y -qq git bzr cvs mercurial subversion hg-fast-export git-svn git-cvs bzr-fastimport

# Configure git and bzr to run tests
- git config --global user.email "jdoe@example.com"
- git config --global user.name "Lorry Baserocker"
- bzr whoami "Lorry Baserocker <jdoe@example.com>"

run-check:
  script:
  - sh check