# HG changeset patch # User Pierre-Yves David # Date 1575932723 -3600 # Node ID 9bae4cf5aa68b2681b6aec4e1dc1ea69c5884a91 # Parent e1f53a68b14668ca819778495d71354d1aabe55a heptapod-ci: test python 4.5 with the pure version of Mercurial the evolve extension is currently broken on 4.5-pure. So we get it in its own commit. diff -r e1f53a68b146 -r 9bae4cf5aa68 .gitlab-ci.yml --- a/.gitlab-ci.yml Mon Dec 09 23:54:50 2019 +0100 +++ b/.gitlab-ci.yml Tue Dec 10 00:05:23 2019 +0100 @@ -11,3 +11,12 @@ - hg -R /ci/repos/mercurial/ update "$hg_rev" - jobs=$(python -c 'import multiprocessing; print multiprocessing.cpu_count()') - (cd tests; /ci/repos/mercurial/tests/run-tests.py -j $jobs --color=always) + +tests-py2-pure: + image: octobus/ci-py2-hgext3rd + script: + - hg pull -R /ci/repos/mercurial/ + - hg_rev=$(tests/testlib/map-hg-rev.sh "$(hg log -r . -T '{branch}')") + - hg -R /ci/repos/mercurial/ update "$hg_rev" + - jobs=$(python -c 'import multiprocessing; print multiprocessing.cpu_count()') + - (cd tests; /ci/repos/mercurial/tests/run-tests.py -j $jobs --color=always --pure)