1#!/usr/bin/env bash
2# Copyright 2021 The gRPC Authors
3#
4# Licensed under the Apache License, Version 2.0 (the "License");
5# you may not use this file except in compliance with the License.
6# You may obtain a copy of the License at
7#
8#     http://www.apache.org/licenses/LICENSE-2.0
9#
10# Unless required by applicable law or agreed to in writing, software
11# distributed under the License is distributed on an "AS IS" BASIS,
12# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13# See the License for the specific language governing permissions and
14# limitations under the License.
15
16set -ex
17
18# install pre-requisites for gRPC C core build
19sudo apt update
20sudo apt install -y build-essential autoconf libtool pkg-config cmake python python-pip clang
21sudo pip install six
22
23# install gRPC Ruby pre-requisites
24sudo apt install -y ruby ruby-dev
25sudo gem install bundler
26ruby --version
27
28cd grpc
29
30git submodule update --init
31
32# build and test ruby
33tools/run_tests/run_tests.py -l ruby -c opt -t -x run_tests/ruby_linux_aarch64_opt_native/sponge_log.xml --report_suite_name ruby_linux_aarch64_opt_native --report_multi_target
34