Skip to content

Commit

Permalink
CI fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
Lokathor committed Jan 12, 2020
1 parent bb959ae commit 059535e
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 5 deletions.
4 changes: 2 additions & 2 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,5 +19,5 @@ matrix:
script:
- cargo build
- cargo test
- cargo build --feature="extern_crate_alloc"
- cargo test --feature="extern_crate_alloc"
- cargo build --features="extern_crate_alloc"
- cargo test --features="extern_crate_alloc"
6 changes: 6 additions & 0 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
{
"rust.features": [
"extern_crate_alloc",
"nightly_slice_partition_dedup"
]
}
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ repository = "https://github.com/Lokathor/tinyvec"
# not even std!

[features]
default = ["extern_crate_alloc"]
default = []

# Provide additional types and impls related to the `alloc` crate.
extern_crate_alloc = []
Expand Down
4 changes: 2 additions & 2 deletions appveyor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,5 +28,5 @@ build: false
test_script:
- cargo build
- cargo test
- cargo build --feature="extern_crate_alloc"
- cargo test --feature="extern_crate_alloc"
- cargo build --features="extern_crate_alloc"
- cargo test --features="extern_crate_alloc"

0 comments on commit 059535e

Please sign in to comment.