Skip to content

Commit

Permalink
Fix CI (pantsbuild#6402)
Browse files Browse the repository at this point in the history
This reverts commit 33674ce.
and also removes a build step from a shard to get it passing.
  • Loading branch information
benjyw authored Aug 27, 2018
1 parent 42cf416 commit 37a8767
Show file tree
Hide file tree
Showing 6 changed files with 15 additions and 19 deletions.
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -159,7 +159,7 @@ matrix:
- sudo chmod 666 /dev/fuse
- sudo chown root:$USER /etc/fuse.conf
script:
- ./build-support/bin/ci.sh -fkmrjst "${SHARD}"
- ./build-support/bin/ci.sh -fkmrjt "${SHARD}"

- <<: *default_test_config
env:
Expand Down
20 changes: 10 additions & 10 deletions src/rust/engine/Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 1 addition & 2 deletions src/rust/engine/fs/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,7 @@ digest = "0.6.2"
futures = "^0.1.16"
futures-cpupool = "0.1"
glob = "0.2.11"
# Pull in https://github.com/pingcap/grpc-rs/pull/211
grpcio = { git = "https://github.com/illicitonion/grpc-rs.git", rev = "d106c615bc0c289ba6d1ce6871786266d109c31c", features = ["secure"] }
grpcio = { version = "0.3", features = ["secure"] }
hashing = { path = "../hashing" }
ignore = "0.3.1"
indexmap = "1"
Expand Down
3 changes: 1 addition & 2 deletions src/rust/engine/process_execution/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,7 @@ bytes = "0.4.5"
digest = "0.6.2"
fs = { path = "../fs" }
futures = "^0.1.16"
# Pull in https://github.com/pingcap/grpc-rs/pull/211
grpcio = { git = "https://github.com/illicitonion/grpc-rs.git", rev = "d106c615bc0c289ba6d1ce6871786266d109c31c", features = ["secure"] }
grpcio = { version = "0.3", features = ["secure"] }
hashing = { path = "../hashing" }
log = "0.4"
protobuf = { version = "2.0.4", features = ["with-bytes"] }
Expand Down
3 changes: 1 addition & 2 deletions src/rust/engine/process_execution/bazel_protos/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,7 @@ publish = false
[dependencies]
bytes = "0.4.5"
futures = "^0.1.16"
# Pull in https://github.com/pingcap/grpc-rs/pull/211
grpcio = { git = "https://github.com/illicitonion/grpc-rs.git", rev = "d106c615bc0c289ba6d1ce6871786266d109c31c", features = ["secure"] }
grpcio = { version = "0.3", features = ["secure"] }
hashing = { path = "../../hashing" }
protobuf = { version = "2.0.4", features = ["with-bytes"] }

Expand Down
3 changes: 1 addition & 2 deletions src/rust/engine/testutil/mock/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,7 @@ publish = false
bazel_protos = { path = "../../process_execution/bazel_protos" }
bytes = "0.4.5"
futures = "^0.1.16"
# Pull in https://github.com/pingcap/grpc-rs/pull/211
grpcio = { git = "https://github.com/illicitonion/grpc-rs.git", rev = "d106c615bc0c289ba6d1ce6871786266d109c31c", features = ["secure"] }
grpcio = { version = "0.3", features = ["secure"] }
hashing = { path = "../../hashing" }
protobuf = { version = "2.0.4", features = ["with-bytes"] }
testutil = { path = ".." }

0 comments on commit 37a8767

Please sign in to comment.