.gitlab-ci.yml
author Anton Shestakov <av6@dwimlabs.net>
Sat, 29 Feb 2020 14:26:50 +0700
branchmercurial-4.5
changeset 5143 7bf8df0ee603
parent 5037 5ea7c807d094
permissions -rw-r--r--
branching: closing test-compat branch for mercurial-4.5

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 --blacklist <(echo test-evolve.t))