bzr branch
http://gegoxaren.bato24.eu/bzr/brz/remove-bazaar
|
6975.1.1
by Vincent Ladeuil
Define containers and commands for byoci. |
1 |
vm.class = lxd |
2 |
# Start with an up to date system by default |
|
3 |
vm.update = True |
|
4 |
# External sources dependencies, packages are not recent enough |
|
5 |
dulwich.clone = (git clone git://jelmer.uk/dulwich ../dulwich.git) |
|
6 |
dulwich.install = (cd ../dulwich.git && ./setup.py install --user) |
|
7 |
dulwich.install3 = (cd ../dulwich.git && python3 ./setup.py install --user) |
|
8 |
subunit.clone = (git clone https://github.com/testing-cabal/subunit.git ../subunit) |
|
|
7054.1.1
by Jelmer Vernooij
Install fastimport from git. |
9 |
fastimport.clone = (git clone git://jelmer.uk/python-fastimport.git ../fastimport.git) |
10 |
fastimport.install = (cd ../fastimport.git && ./setup.py install --user) |
|
11 |
fastimport.install3 = (cd ../fastimport.git && python3 ./setup.py install --user) |
|
|
7192.3.10
by Jelmer Vernooij
Install sphinx_epytext. |
12 |
sphinx_epytext.install = (pip install sphinx_epytext) |
13 |
sphinx_epytext.install3 = (pip3 install sphinx_epytext) |
|
|
7192.4.1
by Jelmer Vernooij
Install the pip version of flake8, since the version in Ubuntu is too old. |
14 |
flake8.install = (pip install flake8) |
15 |
flake8.install3 = (pip3 install flake8) |
|
|
7054.1.1
by Jelmer Vernooij
Install fastimport from git. |
16 |
|
|
6975.1.1
by Vincent Ladeuil
Define containers and commands for byoci. |
17 |
[brz] |
|
7054.1.1
by Jelmer Vernooij
Install fastimport from git. |
18 |
# FIXME: we're stuck on xenial |
|
6975.1.1
by Vincent Ladeuil
Define containers and commands for byoci. |
19 |
# because paramiko 2.0.0 is broken: |
20 |
# breezy.tests.test_transport.TestSSHConnections.test_bzr_connect_to_bzr_ssh |
|
21 |
# runs into a deprecation issue which is only fixed in 2.3.0 which is |
|
22 |
# available nowhere in ubuntu/debian /o\ |
|
23 |
# https://github.com/paramiko/paramiko/issues/1030 |
|
24 |
# https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=882322 -- vila 2018-05-16 |
|
25 |
||
26 |
# FIXME: Arguably this should be vm.build_deps=brz but it requires either an |
|
27 |
# available package or at least a debian/ dir ? -- vila 2018-02-23 |
|
|
5255.6.5
by Jelmer Vernooij
Merge trunk. |
28 |
brz.build_deps = gcc, debhelper, python, python-all-dev, python3-all-dev, python-configobj, python3-configobj, python-docutils, python3-docutils, python-paramiko, python3-paramiko, python-subunit, python3-subunit, python-testtools, python3-testtools, subunit, cython, cython3, python-pip, python3-pip, python-setuptools, python3-setuptools, python-flake8, python3-flake8, python-sphinx, python3-sphinx |
|
6975.1.1
by Vincent Ladeuil
Define containers and commands for byoci. |
29 |
subunit.build_deps = python-testscenarios, python3-testscenarios, python-testtools, python3-testtools |
30 |
vm.packages = {brz.build_deps}, {subunit.build_deps}, bzr, git, python-junitxml |
|
31 |
[brz-xenial] |
|
32 |
vm.release = xenial |
|
|
7192.3.11
by Jelmer Vernooij
merge byov-flake8. |
33 |
byoci.setup.command = ({dulwich.clone} && {dulwich.install} && {dulwich.install3} && {fastimport.clone} && {fastimport.install} && {fastimport.install3} && {subunit.clone} && {flake8.install} && {flake8.install3} && {sphinx_epytext.install} && {sphinx_epytext.install3}) |
|
6975.1.1
by Vincent Ladeuil
Define containers and commands for byoci. |
34 |
# FIXME: bzr log -l2 should be by default -- vila 2018-03-09 |
35 |
byoci.tests.command = bash -o pipefail -c "bzr log -l2 && PYTHONPATH=../subunit/python:$PYTHONPATH PATH=../subunit/filters:$PATH make check-ci | subunit2junitxml -o ../results.xml -f | subunit2pyunit" |
|
36 |
[brz-bionic] |
|
37 |
vm.release = bionic |
|
38 |
[brz-cosmic] |
|
39 |
vm.release = cosmic |
|
40 |
lxd.image = ubuntu-daily:{vm.release}/{vm.architecture} |
|
41 |
[brz-buster] |
|
42 |
vm.distribution = debian |
|
43 |
vm.release = buster |
|
44 |
vm.packages = {brz.build_deps}, {subunit.build_deps}, bzr, git, python-dulwich, python3-dulwich, python-junitxml |
|
45 |
byoci.setup.command = ({subunit.clone}) |
|
46 |
byoci.tests.command = bash -o pipefail -c "bzr log -l2 && (PYTHONPATH=../subunit/python:$PYTHONPATH PATH=../subunit/filters:$PATH make check-ci | subunit2junitxml -o ../results.xml -f | subunit2pyunit)" |
|
47 |
[brz-sid] |
|
48 |
vm.distribution = debian |
|
49 |
vm.release = sid |