.gitlab-ci.yml
branchmercurial-5.0
changeset 5087 5d76b320420e
parent 4974 3bcdaf298c7a
child 4979 c46f0430a668
child 5159 e5fe3ca5e6ad
equal deleted inserted replaced
5086:553b2f2fda93 5087:5d76b320420e
    16     script:
    16     script:
    17         - hg pull -R /ci/repos/mercurial/
    17         - hg pull -R /ci/repos/mercurial/
    18         - hg_rev=$(tests/testlib/map-hg-rev.sh "$(hg log -r . -T '{branch}')")
    18         - hg_rev=$(tests/testlib/map-hg-rev.sh "$(hg log -r . -T '{branch}')")
    19         - hg -R /ci/repos/mercurial/ update "$hg_rev"
    19         - hg -R /ci/repos/mercurial/ update "$hg_rev"
    20         - (cd tests; /ci/repos/mercurial/tests/run-tests.py --color=always --pure)
    20         - (cd tests; /ci/repos/mercurial/tests/run-tests.py --color=always --pure)
    21 
       
    22 tests-py3-cext:
       
    23     image: octobus/ci-py3-hgext3rd
       
    24     script:
       
    25         - hg pull -R /ci/repos/mercurial/
       
    26         - hg_rev=$(tests/testlib/map-hg-rev.sh "$(hg log -r . -T '{branch}')")
       
    27         - hg -R /ci/repos/mercurial/ update "$hg_rev"
       
    28         - (cd tests; python3 /ci/repos/mercurial/tests/run-tests.py --color=always)
       
    29 
       
    30 tests-py3-pure:
       
    31     image: octobus/ci-py3-hgext3rd
       
    32     script:
       
    33         - hg pull -R /ci/repos/mercurial/
       
    34         - hg_rev=$(tests/testlib/map-hg-rev.sh "$(hg log -r . -T '{branch}')")
       
    35         - hg -R /ci/repos/mercurial/ update "$hg_rev"
       
    36         - (cd tests; python3 /ci/repos/mercurial/tests/run-tests.py --color=always --pure)