equal
deleted
inserted
replaced
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) |
|