Browse Source

Fix travis config

vs2017
Alex Crichton 8 years ago
parent
commit
f6a230a750
  1. 1
      .travis.yml
  2. 2
      appveyor.yml
  3. 3
      gcc-test/Cargo.toml

1
.travis.yml

@ -14,6 +14,7 @@ before_script:
script:
- cargo build --verbose
- cargo test --verbose
- cargo test --verbose --features parallel
- cargo test --manifest-path gcc-test/Cargo.toml --target $TARGET
- cargo test --manifest-path gcc-test/Cargo.toml --target $TARGET --features parallel
- cargo test --manifest-path gcc-test/Cargo.toml --target $TARGET --release

2
appveyor.yml

@ -29,5 +29,7 @@ build: false
test_script:
- cargo test
- cargo test --features parallel
- cargo test --manifest-path gcc-test/Cargo.toml
- cargo test --manifest-path gcc-test/Cargo.toml --features parallel
- cargo test --manifest-path gcc-test/Cargo.toml --release

3
gcc-test/Cargo.toml

@ -11,3 +11,6 @@ test = false
[build-dependencies]
gcc = { path = ".." }
[features]
parallel = ["gcc/parallel"]

Loading…
Cancel
Save