aboutsummaryrefslogtreecommitdiff
path: root/kokoro/release/linux/ruby/ruby_build.sh
diff options
context:
space:
mode:
authorFeng Xiao <xfxyjwf@gmail.com>2018-07-11 16:25:55 -0700
committerFeng Xiao <xfxyjwf@gmail.com>2018-07-11 18:09:37 -0700
commite529d162838f747362c123ec10e87ebe3970c677 (patch)
treea92f5abb10a6ae1ec4108d5c98e2e3f528e3696e /kokoro/release/linux/ruby/ruby_build.sh
parent82019f90fff5c44477f91084c84b24989a93df7a (diff)
downloadprotobuf-e529d162838f747362c123ec10e87ebe3970c677.tar.gz
protobuf-e529d162838f747362c123ec10e87ebe3970c677.tar.bz2
protobuf-e529d162838f747362c123ec10e87ebe3970c677.zip
Make ruby release configs consistent with protoc.
Diffstat (limited to 'kokoro/release/linux/ruby/ruby_build.sh')
-rwxr-xr-xkokoro/release/linux/ruby/ruby_build.sh15
1 files changed, 0 insertions, 15 deletions
diff --git a/kokoro/release/linux/ruby/ruby_build.sh b/kokoro/release/linux/ruby/ruby_build.sh
deleted file mode 100755
index cf6b433d..00000000
--- a/kokoro/release/linux/ruby/ruby_build.sh
+++ /dev/null
@@ -1,15 +0,0 @@
-#!/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