7
7
sudo : false
8
8
script :
9
9
- cargo build --verbose
10
+ - if [ "$TRAVIS_RUST_VERSION" = "nightly" ]; then
11
+ travis_wait cargo test --verbose --features pattern;
12
+ else
13
+ travis_wait cargo test --verbose;
14
+ fi
15
+ - ./run-shootout-test
10
16
- cargo doc --verbose
11
- # - if [ "$TRAVIS_RUST_VERSION" = "nightly" ]; then
12
- # travis_wait cargo test --verbose --features pattern;
13
- # else
14
- # travis_wait cargo test --verbose;
15
- # fi
16
- # - ./run-shootout-test
17
- # - cargo doc
18
- # - cargo test --verbose --manifest-path=regex-syntax/Cargo.toml
19
- # - cargo doc --verbose --manifest-path=regex-syntax/Cargo.toml
20
- # - if [ "$TRAVIS_RUST_VERSION" = "nightly" ]; then
21
- # travis_wait ./run-bench rust;
22
- # travis_wait ./run-bench rust-bytes --no-run;
23
- # travis_wait ./run-bench rust-plugin --no-run;
24
- # travis_wait ./run-bench pcre --no-run;
25
- # travis_wait ./run-bench onig --no-run;
26
- # travis_wait cargo test --verbose --manifest-path=regex_macros/Cargo.toml;
27
- # fi
17
+ - cargo test --verbose --manifest-path=regex-syntax/Cargo.toml
18
+ - cargo doc --verbose --manifest-path=regex-syntax/Cargo.toml
19
+ - if [ "$TRAVIS_RUST_VERSION" = "nightly" ]; then
20
+ travis_wait ./run-bench rust;
21
+ travis_wait ./run-bench rust-bytes --no-run;
22
+ travis_wait ./run-bench rust-plugin --no-run;
23
+ travis_wait ./run-bench pcre --no-run;
24
+ travis_wait ./run-bench onig --no-run;
25
+ travis_wait cargo test --verbose --manifest-path=regex_macros/Cargo.toml;
26
+ fi
28
27
addons :
29
28
apt :
30
29
packages :
@@ -41,7 +40,7 @@ after_success: |
41
40
git push -qf https://${TOKEN}@github.com/${TRAVIS_REPO_SLUG}.git gh-pages &&
42
41
wget https://github.com/SimonKagstrom/kcov/archive/master.tar.gz &&
43
42
tar xzf master.tar.gz && mkdir kcov-master/build && cd kcov-master/build && cmake .. && make && make install DESTDIR=../tmp && cd ../.. &&
44
- PATH="./kcov-master/tmp/usr/local/bin:$PATH" ./run-kcov --coveralls-id $TRAVIS_JOB_ID
43
+ PATH="./kcov-master/tmp/usr/local/bin:$PATH" ./run-kcov --with-plugin -- coveralls-id $TRAVIS_JOB_ID
45
44
env :
46
45
global :
47
46
secure : VvIrYRW/a8FmBA61hn1bDrqWwR92tANOT6PCeLYd9A9ViQrN07PE6uGsnd9iwr8itck10Ctl1mThZYUkK8BDFEmlvSxOFJ/Po5eRe6A1CYuFF40zizJ+3NllVkN20kwoQDe0kxwZVDGO9Yi1icHUrbRPWDfS+1tfobO/UT8Dlng=
0 commit comments