Skip to content

Commit 55d12cb

Browse files
committed
coveralls appears to work
1 parent a7c80c5 commit 55d12cb

File tree

1 file changed

+17
-18
lines changed

1 file changed

+17
-18
lines changed

.travis.yml

Lines changed: 17 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -7,24 +7,23 @@ rust:
77
sudo: false
88
script:
99
- 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
1016
- 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
2827
addons:
2928
apt:
3029
packages:
@@ -41,7 +40,7 @@ after_success: |
4140
git push -qf https://${TOKEN}@github.com/${TRAVIS_REPO_SLUG}.git gh-pages &&
4241
wget https://github.com/SimonKagstrom/kcov/archive/master.tar.gz &&
4342
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
4544
env:
4645
global:
4746
secure: VvIrYRW/a8FmBA61hn1bDrqWwR92tANOT6PCeLYd9A9ViQrN07PE6uGsnd9iwr8itck10Ctl1mThZYUkK8BDFEmlvSxOFJ/Po5eRe6A1CYuFF40zizJ+3NllVkN20kwoQDe0kxwZVDGO9Yi1icHUrbRPWDfS+1tfobO/UT8Dlng=

0 commit comments

Comments
 (0)