aboutsummaryrefslogtreecommitdiffhomepage
path: root/kokoro/release/macos/ruby/ruby_build.sh
blob: cf6b433d06a8ede5137b4fc914a37b4c85315950 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#!/bin/bash

# Build protoc
if test ! -e src/protoc; then
  ./autogen.sh
  ./configure
  make -j4
fi

umask 0022
pushd ruby
bundle install && bundle exec rake gem:native
ls pkg
mv pkg/* $ARTIFACT_DIR
popd