comparison .gitlab-ci.yml @ 5766:82da27321e91 mercurial-4.7

test-compat: merge mercurial-4.8 into mercurial-4.7 # no-check-commit
author Anton Shestakov <av6@dwimlabs.net>
date Sun, 31 Jan 2021 16:15:26 +0800
parents 8d93e7fc0daa c2c85576ddfb
children 0f32359bcf3e 8bd3348c4150
comparison
equal deleted inserted replaced
5765:98e87c181e0f 5766:82da27321e91
25 before_script: 25 before_script:
26 - (cd tests; ls -1 test-check-*.t > /tmp/check-tests.txt) 26 - (cd tests; ls -1 test-check-*.t > /tmp/check-tests.txt)
27 script: 27 script:
28 - *prepare_hg 28 - *prepare_hg
29 - ("$PYTHON" --version) 29 - ("$PYTHON" --version)
30 - (cd tests; set -x; HGMODULEPOLICY="$TEST_HGMODULEPOLICY" "$PYTHON" /ci/repos/mercurial/tests/run-tests.py --color=always $RUNTEST_ARGS) 30 - jobs=$(python -c 'import multiprocessing; print multiprocessing.cpu_count()')
31 - (cd tests; set -x; HGMODULEPOLICY="$TEST_HGMODULEPOLICY" "$PYTHON" /ci/repos/mercurial/tests/run-tests.py -j $jobs --color=always $RUNTEST_ARGS)
31 32
32 checks-py2: 33 checks-py2:
33 <<: *runtests 34 <<: *runtests
34 variables: 35 variables:
35 RUNTEST_ARGS: "--test-list /tmp/check-tests.txt" 36 RUNTEST_ARGS: "--test-list /tmp/check-tests.txt"