Skip to content
This repository was archived by the owner on Nov 30, 2024. It is now read-only.

Commit c69a231

Browse files
authored
Merge pull request #381 from rspec/update-travis-build-scripts-2019-07-24-for-master
Updates from rspec-dev (2019-07-24)
2 parents 6deb13f + 15ab1e7 commit c69a231

10 files changed

+15
-15
lines changed

.rubocop_rspec_base.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# This file was generated on 2019-07-08T14:21:41+01:00 from the rspec-dev repo.
1+
# This file was generated on 2019-07-24T15:33:55+02:00 from the rspec-dev repo.
22
# DO NOT modify it by hand as your changes will get lost the next time it is generated.
33

44
# This file contains defaults for RSpec projects. Individual projects

.travis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# This file was generated on 2019-07-08T14:21:41+01:00 from the rspec-dev repo.
1+
# This file was generated on 2019-07-24T15:33:55+02:00 from the rspec-dev repo.
22
# DO NOT modify it by hand as your changes will get lost the next time it is generated.
33

44
# In order to install old Rubies, we need to use old Ubuntu distibution.

Gemfile

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -20,14 +20,13 @@ if RUBY_VERSION < '2.0.0' || RUBY_ENGINE == 'java'
2020
gem 'json', '< 2.0.0' # is a dependency of simplecov
2121
end
2222

23-
if RUBY_VERSION < '2.0.0' && !!(RbConfig::CONFIG['host_os'] =~ /cygwin|mswin|mingw|bccwin|wince|emx/)
24-
gem 'ffi', '< 1.9.15' # allow ffi to be installed on older rubies on windows
25-
elsif RUBY_VERSION < '1.9'
26-
gem 'ffi', '< 1.9.19' # ffi dropped Ruby 1.8 support in 1.9.19
23+
if RUBY_VERSION < '2.2.0' && !!(RbConfig::CONFIG['host_os'] =~ /cygwin|mswin|mingw|bccwin|wince|emx/)
24+
gem 'ffi', '< 1.10'
2725
elsif RUBY_VERSION < '2.0'
28-
gem 'ffi', '< 1.11.0' # ffi dropped Ruby 1.9 support in 1.11.0
26+
# ffi dropped Ruby 1.8 support in 1.9.19 and Ruby 1.9 support in 1.11.0
27+
gem 'ffi', '< 1.9.19'
2928
else
30-
gem 'ffi', '~> 1.9.25'
29+
gem 'ffi', '~> 1.11.0'
3130
end
3231

3332
# No need to run rubocop on earlier versions

appveyor.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# This file was generated on 2019-07-08T14:21:41+01:00 from the rspec-dev repo.
1+
# This file was generated on 2019-07-24T15:33:55+02:00 from the rspec-dev repo.
22
# DO NOT modify it by hand as your changes will get lost the next time it is generated.
33

44
version: "{build}"
@@ -39,3 +39,4 @@ environment:
3939
- ruby_version: 23-x64
4040
- ruby_version: 24-x64
4141
- ruby_version: 25-x64
42+
- ruby_version: 26-x64

script/clone_all_rspec_repos

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#!/bin/bash
2-
# This file was generated on 2019-07-08T14:21:41+01:00 from the rspec-dev repo.
2+
# This file was generated on 2019-07-24T15:33:55+02:00 from the rspec-dev repo.
33
# DO NOT modify it by hand as your changes will get lost the next time it is generated.
44

55
set -e

script/functions.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# This file was generated on 2019-07-08T14:21:41+01:00 from the rspec-dev repo.
1+
# This file was generated on 2019-07-24T15:33:55+02:00 from the rspec-dev repo.
22
# DO NOT modify it by hand as your changes will get lost the next time it is generated.
33

44
SCRIPT_DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"

script/predicate_functions.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# This file was generated on 2019-07-08T14:21:41+01:00 from the rspec-dev repo.
1+
# This file was generated on 2019-07-24T15:33:55+02:00 from the rspec-dev repo.
22
# DO NOT modify it by hand as your changes will get lost the next time it is generated.
33

44
function is_mri {

script/run_build

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#!/bin/bash
2-
# This file was generated on 2019-07-08T14:21:41+01:00 from the rspec-dev repo.
2+
# This file was generated on 2019-07-24T15:33:55+02:00 from the rspec-dev repo.
33
# DO NOT modify it by hand as your changes will get lost the next time it is generated.
44

55
set -e

script/travis_functions.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# This file was generated on 2019-07-08T14:21:41+01:00 from the rspec-dev repo.
1+
# This file was generated on 2019-07-24T15:33:55+02:00 from the rspec-dev repo.
22
# DO NOT modify it by hand as your changes will get lost the next time it is generated.
33

44
# Taken from:

script/update_rubygems_and_install_bundler

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#!/bin/bash
2-
# This file was generated on 2019-07-08T14:21:41+01:00 from the rspec-dev repo.
2+
# This file was generated on 2019-07-24T15:33:55+02:00 from the rspec-dev repo.
33
# DO NOT modify it by hand as your changes will get lost the next time it is generated.
44

55
set -e

0 commit comments

Comments
 (0)