This is an automated email from the ASF dual-hosted git repository.
lidavidm pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/arrow-adbc.git
The following commit(s) were added to refs/heads/main by this push:
new bfac372 chore(dev/release): install gem into build directory in
verification (#302)
bfac372 is described below
commit bfac3729911c6365c4f73dbf17071fa1ef3f073d
Author: Sutou Kouhei <[email protected]>
AuthorDate: Thu Dec 29 22:16:50 2022 +0900
chore(dev/release): install gem into build directory in verification (#302)
Fixes #301.
---
ci/scripts/glib_test.sh | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/ci/scripts/glib_test.sh b/ci/scripts/glib_test.sh
index e14f616..92c696a 100755
--- a/ci/scripts/glib_test.sh
+++ b/ci/scripts/glib_test.sh
@@ -63,7 +63,7 @@ test_subproject() {
env DYLD_LIBRARY_PATH="${DYLD_LIBRARY_PATH}" \
ruby test/run.rb
bundle exec rake build
- gem install --user-install pkg/*.gem
+ gem install --install-dir "${build_dir}/gems" pkg/*.gem
popd
}