File tree 2 files changed +3
-3
lines changed
2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -40,6 +40,8 @@ install:
40
40
fi
41
41
if [ "$TRAVIS_OS_NAME" == "windows" ]; then
42
42
choco install windows-sdk-10.0
43
+ find tests/ui/* \( -name '*.rs' -or -name '*.stderr' -or -name '*.stdout' \) -exec dos2unix '{}' +
44
+ find tests/ui-toml/* \( -name '*.rs' -or -name '*.stderr' -or -name '*.stdout' -or -name '*.toml' \) -exec dos2unix '{}' +
43
45
fi
44
46
fi
45
47
@@ -64,9 +66,6 @@ matrix:
64
66
- env : INTEGRATION=serde-rs/serde
65
67
- env : INTEGRATION=Geal/nom
66
68
- env : INTEGRATION=hyperium/hyper
67
- allow_failures :
68
- - os : windows
69
- env : BASE_TEST=true
70
69
# prevent these jobs with default env vars
71
70
exclude :
72
71
- os : linux
Original file line number Diff line number Diff line change @@ -27,6 +27,7 @@ cd clippy_dev && cargo test && cd ..
27
27
# Perform various checks for lint registration
28
28
./util/dev update_lints --check
29
29
30
+ PATH=$PATH :$( rustc --print sysroot) /bin
30
31
CLIPPY=" ` pwd` /target/debug/cargo-clippy clippy"
31
32
# run clippy on its own codebase...
32
33
${CLIPPY} --all-targets --all-features -- -D clippy::all -D clippy::internal -Dclippy::pedantic
You can’t perform that action at this time.
0 commit comments