# HG changeset patch # User Anton Shestakov # Date 1590308960 -28800 # Node ID 4a958a7bb1383fda67267da987bf6791e463b165 # Parent efb8ae4419b289d534f68a2fb109caffdb956f4e ci: set HGMODULEPOLICY when running specific variants diff -r efb8ae4419b2 -r 4a958a7bb138 .gitlab-ci.yml --- a/.gitlab-ci.yml Fri May 22 08:39:51 2020 +0800 +++ b/.gitlab-ci.yml Sun May 24 16:29:20 2020 +0800 @@ -17,6 +17,7 @@ PY: py2 PYTHON: python RUNTEST_ARGS: "" + TEST_HGMODULEPOLICY: "allow" .runtests_template: &runtests image: octobus/ci-$PY-hgext3rd @@ -24,21 +25,25 @@ - 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; "$PYTHON" /ci/repos/mercurial/tests/run-tests.py --color=always $RUNTEST_ARGS) + - (cd tests; HGMODULEPOLICY="$TEST_HGMODULEPOLICY" "$PYTHON" /ci/repos/mercurial/tests/run-tests.py --color=always $RUNTEST_ARGS) tests-py2-cext: <<: *runtests + variables: + TEST_HGMODULEPOLICY: "c" tests-py2-pure: <<: *runtests variables: RUNTEST_ARGS: "--pure" + TEST_HGMODULEPOLICY: "py" tests-py3-cext: <<: *runtests variables: PY: py3 PYTHON: python3 + TEST_HGMODULEPOLICY: "c" tests-py3-pure: <<: *runtests @@ -46,6 +51,7 @@ PY: py3 PYTHON: python3 RUNTEST_ARGS: "--pure" + TEST_HGMODULEPOLICY: "py" doc: image: octobus/ci-py2-evolve-doc