.gitlab-ci.yml
branchmercurial-5.0
changeset 4974 3bcdaf298c7a
parent 4966 4f3c87584a4a
child 4979 c46f0430a668
child 5159 e5fe3ca5e6ad
equal deleted inserted replaced
4968:d299af4da8d8 4974:3bcdaf298c7a
    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)