Sha256: 4ebc05c5713cb54d16b04196724629d6cd3f3b7bf5a9f5b6e96ae2871da7c77e
Contents?: true
Size: 874 Bytes
Versions: 10
Compression:
Stored size: 874 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.0 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 } gem install bundler --version 1.17.3 (bundle update && bundle exec rake) || set_failed_status exit $EXIT_STATUS
Version data entries
10 entries across 10 versions & 1 rubygems