##// END OF EJS Templates
heptapod-ci: add a job to test the rust version of Mercurial...
marmoute -
r44758:541a509a stable
parent child Browse files
Show More
@@ -1,62 +1,75 b''
1 image: octobus/ci-mercurial-core
1 image: octobus/ci-mercurial-core
2
2
3 # The runner made a clone as root.
3 # The runner made a clone as root.
4 # We make a new clone owned by user used to run the step.
4 # We make a new clone owned by user used to run the step.
5 before_script:
5 before_script:
6 - hg clone . /tmp/mercurial-ci/ --noupdate
6 - hg clone . /tmp/mercurial-ci/ --noupdate
7 - hg -R /tmp/mercurial-ci/ update `hg log --rev '.' --template '{node}'`
7 - hg -R /tmp/mercurial-ci/ update `hg log --rev '.' --template '{node}'`
8 - cd /tmp/mercurial-ci/
8 - cd /tmp/mercurial-ci/
9 - (cd tests; ls -1 test-check-*.*) > /tmp/check-tests.txt
9 - (cd tests; ls -1 test-check-*.*) > /tmp/check-tests.txt
10
10
11 variables:
11 variables:
12 PYTHON: python
12 PYTHON: python
13
13
14 .runtests_template: &runtests
14 .runtests_template: &runtests
15 script:
15 script:
16 - cd tests/
16 - cd tests/
17 - echo "python used, $PYTHON"
17 - echo "python used, $PYTHON"
18 - echo "$RUNTEST_ARGS"
18 - echo "$RUNTEST_ARGS"
19 - $PYTHON run-tests.py --color=always $RUNTEST_ARGS
19 - $PYTHON run-tests.py --color=always $RUNTEST_ARGS
20
20
21 checks-py2:
21 checks-py2:
22 <<: *runtests
22 <<: *runtests
23 variables:
23 variables:
24 RUNTEST_ARGS: "--time --test-list /tmp/check-tests.txt"
24 RUNTEST_ARGS: "--time --test-list /tmp/check-tests.txt"
25
25
26 checks-py3:
26 checks-py3:
27 <<: *runtests
27 <<: *runtests
28 variables:
28 variables:
29 RUNTEST_ARGS: "--time --test-list /tmp/check-tests.txt"
29 RUNTEST_ARGS: "--time --test-list /tmp/check-tests.txt"
30 PYTHON: python3
30 PYTHON: python3
31
31
32 rust-cargo-test-py2: &rust_cargo_test
32 rust-cargo-test-py2: &rust_cargo_test
33 script:
33 script:
34 - echo "python used, $PYTHON"
34 - echo "python used, $PYTHON"
35 - make rust-tests
35 - make rust-tests
36
36
37 rust-cargo-test-py3:
37 rust-cargo-test-py3:
38 <<: *rust_cargo_test
38 <<: *rust_cargo_test
39 variables:
39 variables:
40 PYTHON: python3
40 PYTHON: python3
41
41
42 test-py2:
42 test-py2:
43 <<: *runtests
43 <<: *runtests
44 variables:
44 variables:
45 RUNTEST_ARGS: "--blacklist /tmp/check-tests.txt"
45 RUNTEST_ARGS: "--blacklist /tmp/check-tests.txt"
46
46
47 test-py3:
47 test-py3:
48 <<: *runtests
48 <<: *runtests
49 variables:
49 variables:
50 RUNTEST_ARGS: "--blacklist /tmp/check-tests.txt"
50 RUNTEST_ARGS: "--blacklist /tmp/check-tests.txt"
51 PYTHON: python3
51 PYTHON: python3
52
52
53 test-py2-pure:
53 test-py2-pure:
54 <<: *runtests
54 <<: *runtests
55 variables:
55 variables:
56 RUNTEST_ARGS: "--pure --blacklist /tmp/check-tests.txt"
56 RUNTEST_ARGS: "--pure --blacklist /tmp/check-tests.txt"
57
57
58 test-py3-pure:
58 test-py3-pure:
59 <<: *runtests
59 <<: *runtests
60 variables:
60 variables:
61 RUNTEST_ARGS: "--pure --blacklist /tmp/check-tests.txt"
61 RUNTEST_ARGS: "--pure --blacklist /tmp/check-tests.txt"
62 PYTHON: python3
62 PYTHON: python3
63
64 test-py2-rust:
65 <<: *runtests
66 variables:
67 HGWITHRUSTEXT: cpython
68 RUNTEST_ARGS: "--blacklist /tmp/check-tests.txt"
69
70 test-py3-rust:
71 <<: *runtests
72 variables:
73 HGWITHRUSTEXT: cpython
74 RUNTEST_ARGS: "--blacklist /tmp/check-tests.txt"
75 PYTHON: python3
General Comments 0
You need to be logged in to leave comments. Login now