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 1
1
#! /usr/bin/env bash
2
2
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
5
4
# RUBOCOP_TEST=true) and rspec testing (with RSPEC_TEST=true). It also supports testing
6
5
# with one or more Puppet versions, with PUPPET_VERSIONS set to a space-separated list
7
6
# of versions to test.
@@ -18,10 +17,6 @@ echo 'Starting script/cibuild'
18
17
19
18
DIR=" $( cd " $( dirname " ${BASH_SOURCE[0]} " ) " && cd .. && pwd ) "
20
19
21
- echo " travis_fold:start:cibuild-environment-dump"
22
- env
23
- echo " travis_fold:end:cibuild-environment-dump"
24
-
25
20
# Create a temporary file to capture output of various steps.
26
21
function cleanup() {
27
22
rm -f " ${DIR} /.ruby-version"
@@ -35,10 +30,8 @@ ruby -e "print RUBY_VERSION" > "${DIR}/.ruby-version"
35
30
# Bootstrapping
36
31
BOOTSTRAPPING_COUNTER=0
37
32
function bootstrap() {
38
- echo " travis_fold:start:bootstrap.${BOOTSTRAPPING_COUNTER} "
39
33
time " ${DIR} /script/bootstrap"
40
34
bootstrap_exitcode=$?
41
- echo " travis_fold:end:bootstrap.${BOOTSTRAPPING_COUNTER} "
42
35
43
36
if [ $? -ne 0 ]; then
44
37
echo " Bootstrap failed!"
You can’t perform that action at this time.
0 commit comments