diff .gitlab-ci.yml @ 5235:90fbbc29b93a mercurial-5.0

test-compat: merge mercurial-5.1 into mercurial-5.0
author Anton Shestakov <av6@dwimlabs.net>
date Wed, 08 Apr 2020 01:16:54 +0800
parents e5fe3ca5e6ad
children a7fb433faab6 868e7bc03b5f
line wrap: on
line diff
--- a/.gitlab-ci.yml	Wed Apr 08 01:16:53 2020 +0800
+++ b/.gitlab-ci.yml	Wed Apr 08 01:16:54 2020 +0800
@@ -3,16 +3,6 @@
     script:
         - hg files -0 'set:(**.py or grep("^#!.*python")) - removed()' -X hgext3rd/evolve/thirdparty | xargs -0 flake8
 
-pytype:
-    image: octobus/ci-py3-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()')
-        - pytype -P /ci/repos/mercurial/:hgext3rd -k hgext3rd -x hgext3rd/evolve/thirdparty -j $jobs || true
-    when: manual
-
 tests-py2-cext:
     image: octobus/ci-py2-hgext3rd
     script:
@@ -28,30 +18,3 @@
         - hg_rev=$(tests/testlib/map-hg-rev.sh "$(hg log -r . -T '{branch}')")
         - hg -R /ci/repos/mercurial/ update "$hg_rev"
         - (cd tests; /ci/repos/mercurial/tests/run-tests.py --color=always --pure)
-
-tests-py3-cext:
-    image: octobus/ci-py3-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"
-        - (cd tests; python3 /ci/repos/mercurial/tests/run-tests.py --color=always)
-
-tests-py3-pure:
-    image: octobus/ci-py3-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"
-        - (cd tests; python3 /ci/repos/mercurial/tests/run-tests.py --color=always --pure)
-
-doc:
-    image: octobus/ci-py2-evolve-doc
-    script:
-        - cd docs/
-        - make
-    variables:
-        LANG: en_us.UTF-8
-    artifacts:
-        paths:
-            - html/*