Sha256: d9014823e6aee4a5c76e58e3ed0a793ed6b095f6f7f24b7b55a47b1013d7ef08

Contents?: true

Size: 834 Bytes

Versions: 13

Compression:

Stored size: 834 Bytes

Contents

#!/bin/bash

# This file runs tests for merges, PRs, and nightlies.
# There are a few rules for what tests are run:
#  * PRs run all non-acceptance tests for every library.
#  * Merges run all non-acceptance tests for every library, and acceptance tests for all altered libraries.
#  * Nightlies run all acceptance tests for every library.
#  * Currently only runs tests on 2.5.1

set -eo pipefail

# Debug: show build environment
env | grep KOKORO

cd github/google-api-ruby-client/

# Print out Ruby version
ruby --version

# Temporary workaround for a known bundler+docker issue:
# https://github.com/bundler/bundler/issues/6154
export BUNDLE_GEMFILE=

# Capture failures
EXIT_STATUS=0 # everything passed
function set_failed_status {
    EXIT_STATUS=1
}

(bundle update && bundle exec rake) || set_failed_status

exit $EXIT_STATUS

Version data entries

13 entries across 13 versions & 1 rubygems

Version Path
google-api-client-0.28.7 .kokoro/windows.sh
google-api-client-0.28.6 .kokoro/windows.sh
google-api-client-0.28.5 .kokoro/windows.sh
google-api-client-0.28.4 .kokoro/windows.sh
google-api-client-0.28.3 .kokoro/windows.sh
google-api-client-0.28.2 .kokoro/windows.sh
google-api-client-0.28.1 .kokoro/windows.sh
google-api-client-0.28.0 .kokoro/windows.sh
google-api-client-0.27.3 .kokoro/windows.sh
google-api-client-0.27.2 .kokoro/windows.sh
google-api-client-0.27.1 .kokoro/windows.sh
google-api-client-0.27.0 .kokoro/windows.sh
google-api-client-0.26.0 .kokoro/windows.sh