File tree 1 file changed +5
-10
lines changed
1 file changed +5
-10
lines changed Original file line number Diff line number Diff line change @@ -116,21 +116,16 @@ test_source_distribution() {
116
116
export ARROW_TEST_DATA=$PWD /arrow-testing-data/data
117
117
export PARQUET_TEST_DATA=$PWD /parquet-testing-data/data
118
118
119
- # use local modules because we don't publish modules to crates.io yet
120
- sed \
121
- -i.bak \
122
- -E \
123
- -e ' s/^arrow = "([^"]*)"/arrow = { version = "\1", path = "..\/arrow" }/g' \
124
- -e ' s/^parquet = "([^"]*)"/parquet = { version = "\1", path = "..\/parquet" }/g' \
125
- * /Cargo.toml
126
-
127
119
(cd arrow && cargo build && cargo test)
128
120
(cd arrow-flight && cargo build && cargo test)
129
121
(cd parquet && cargo build && cargo test)
130
122
(cd parquet_derive && cargo build && cargo test)
131
123
132
- # verify that the crates can be published to crates.io
133
- pushd arrow
124
+ # verify that the leaf crates can be published to crates.io
125
+ # we can't verify crates that depend on others
126
+ # (because the others haven't yet been published to crates.io)
127
+
128
+ pushd arrow-buffer
134
129
cargo publish --dry-run
135
130
popd
136
131
You can’t perform that action at this time.
0 commit comments