Mercurial > evolve
view .gitlab-ci.yml @ 5163:1752a2e7a226 mercurial-4.6
test-compat: merge mercurial-4.7 into mercurial-4.6
author | Anton Shestakov <av6@dwimlabs.net> |
---|---|
date | Sat, 29 Feb 2020 15:18:00 +0700 |
parents | a7fb433faab6 |
children | 88f9bbba392d d04a9bf34b79 |
line wrap: on
line source
flake8: image: octobus/ci-py2-hgext3rd script: - hg files -0 'set:(**.py or grep("^#!.*python")) - removed()' -X hgext3rd/evolve/thirdparty | xargs -0 flake8 tests-py2-cext: 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) 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)