Skip to content

Commit dc51972

Browse files
committed
Update custom scripts to match rspec-dev changes.
1 parent 2785d7b commit dc51972

4 files changed

+9
-4
lines changed
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
#!/bin/bash
22

3-
set -ex
3+
set -e
44
source FUNCTIONS_SCRIPT_FILE
55

6+
echo "Starting bundle install using shared bundle path"
67
travis_retry eval "bundle install --gemfile ./Gemfile --path REPLACE_BUNDLE_PATH --retry=3 --jobs=3"

script/after_update_travis_build.sh

+3-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
11
#!/bin/bash
2-
set -e -x
2+
set -e
3+
4+
echo "Restoring custom Travis config"
35
mv .travis.yml{.update_backup,}

script/before_update_travis_build.sh

+3-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
11
#!/bin/bash
2-
set -e -x
2+
set -e
3+
4+
echo "Backing up custom Travis config"
35
mv .travis.yml{,.update_backup}

script/custom_build_functions.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,5 +8,5 @@ function run_cukes {
88
# Since we are already implicitly testing them we do not need to run their spec
99
# suites explicitly.
1010
function run_all_spec_suites {
11-
run_specs_one_by_one
11+
fold "one-by-one specs" run_specs_one_by_one
1212
}

0 commit comments

Comments
 (0)