File tree Expand file tree Collapse file tree 2 files changed +1
-34
lines changed Expand file tree Collapse file tree 2 files changed +1
-34
lines changed Load Diff This file was deleted.
Original file line number Diff line number Diff line change 11#! /usr/bin/env bash
22
3- # Unified 'cibuild' script for compatibility with Travis, to reduce the overall number
4- # of jobs for performance purposes. This script supports the rubocop testing (with
3+ # This script supports the rubocop testing (with
54# RUBOCOP_TEST=true) and rspec testing (with RSPEC_TEST=true). It also supports testing
65# with one or more Puppet versions, with PUPPET_VERSIONS set to a space-separated list
76# of versions to test.
@@ -18,10 +17,6 @@ echo 'Starting script/cibuild'
1817
1918DIR=" $( cd " $( dirname " ${BASH_SOURCE[0]} " ) " && cd .. && pwd ) "
2019
21- echo " travis_fold:start:cibuild-environment-dump"
22- env
23- echo " travis_fold:end:cibuild-environment-dump"
24-
2520# Create a temporary file to capture output of various steps.
2621function cleanup() {
2722 rm -f " ${DIR} /.ruby-version"
@@ -35,10 +30,8 @@ ruby -e "print RUBY_VERSION" > "${DIR}/.ruby-version"
3530# Bootstrapping
3631BOOTSTRAPPING_COUNTER=0
3732function bootstrap() {
38- echo " travis_fold:start:bootstrap.${BOOTSTRAPPING_COUNTER} "
3933 time " ${DIR} /script/bootstrap"
4034 bootstrap_exitcode=$?
41- echo " travis_fold:end:bootstrap.${BOOTSTRAPPING_COUNTER} "
4235
4336 if [ $? -ne 0 ]; then
4437 echo " Bootstrap failed!"
You can’t perform that action at this time.
0 commit comments