Skip to content

Commit 49c188b

Browse files
committed
Remove deprecated Travis CI bits
1 parent acd3359 commit 49c188b

File tree

2 files changed

+1
-34
lines changed

2 files changed

+1
-34
lines changed

.travis.yml

Lines changed: 0 additions & 26 deletions
This file was deleted.

script/cibuild

Lines changed: 1 addition & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
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

1918
DIR="$( 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.
2621
function cleanup() {
2722
rm -f "${DIR}/.ruby-version"
@@ -35,10 +30,8 @@ ruby -e "print RUBY_VERSION" > "${DIR}/.ruby-version"
3530
# Bootstrapping
3631
BOOTSTRAPPING_COUNTER=0
3732
function 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!"

0 commit comments

Comments
 (0)