You are viewing a plain text version of this content. The canonical link for it is here.
Posted to github@arrow.apache.org by "kou (via GitHub)" <gi...@apache.org> on 2023/05/08 13:45:38 UTC

[GitHub] [arrow-adbc] kou commented on pull request #662: ci: 0.4.0 release fixes

kou commented on PR #662:
URL: https://github.com/apache/arrow-adbc/pull/662#issuecomment-1538387246

   Sorry. One more change:
   
   ```diff
   diff --git a/ci/scripts/glib_test.sh b/ci/scripts/glib_test.sh
   index b65c2de..58dd987 100755
   --- a/ci/scripts/glib_test.sh
   +++ b/ci/scripts/glib_test.sh
   @@ -76,14 +76,16 @@ test_subproject() {
    
        # Install consistent version of red-arrow for given arrow-glib
        local -r arrow_glib_version=$(pkg-config --modversion arrow-glib | sed -e 's/-SNAPSHOT$//g' || :)
   +    local red_arrow=""
        if [ -n "${arrow_glib_version}" ]; then
   -        gem install \
   -            --install-dir "${build_dir}/gems" \
   -            --version ${arrow_glib_version} \
   -            red-arrow \
   -            -- ${gem_flags}
   +        red_arrow="red-arrow:${arrow_glib_version}"
        fi
   -    gem install --install-dir "${build_dir}/gems" pkg/*.gem -- ${gem_flags}
   +    gem install \
   +	--install-dir "${build_dir}/gems" \
   +	${red_arrow} \
   +	pkg/*.gem \
   +	-- \
   +	${gem_flags}
        popd
    }
    ```


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: github-unsubscribe@arrow.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org