blob: d13c12045e34770ca42c0e44ca7f88c39cbbc223 [file] [log] [blame]
#!/bin/bash
set -ex
# Build protoc
bazel build //:protoc
export PROTOC=$PWD/bazel-bin/protoc
# Pull in dependencies.
git submodule update --init --recursive
umask 0022
pushd ruby
bundle update && bundle exec rake gem:native
ls pkg
mv pkg/* $ARTIFACT_DIR
popd