Skip to content

Commit 996094d

Browse files
committed
Merge branch 'release-3-1-0' into 3.1
2 parents 3afa49d + 83e9b15 commit 996094d

File tree

15 files changed

+118
-85
lines changed

15 files changed

+118
-85
lines changed

.github/bors.toml

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,5 @@
11
status = [
22
"ubuntu_lint",
3-
"ubuntu (2.3.x, rubygems)",
4-
"ubuntu (2.3.x, bundler)",
53
"macos (2.4.x)",
64
"ubuntu (2.4.x, rubygems)",
75
"ubuntu (2.4.x, bundler)",
@@ -15,9 +13,10 @@ status = [
1513
"ubuntu (2.6.x, bundler)",
1614
"windows (2.6.x)",
1715
"ubuntu_bundler_master (2.6.x)",
18-
"ubuntu_rvm (ruby-head, rubygems)",
19-
"ubuntu_rvm (ruby-head, bundler)",
20-
"ubuntu_rvm (jruby-9.2.8.0, rubygems)",
16+
"ruby_master",
17+
"ubuntu_rvm (2.3.8)",
18+
"ubuntu_rvm (ruby-head)",
19+
"ubuntu_rvm (jruby-9.2.9.0)",
2120
]
2221

2322
timeout-sec = 14400

.github/workflows/macos.yml

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,12 @@
11
name: macos
22

3-
on: [push]
3+
on:
4+
pull_request:
5+
6+
push:
7+
branches:
8+
- staging
9+
- trying
410

511
jobs:
612
macos:
@@ -9,7 +15,7 @@ jobs:
915
matrix:
1016
ruby: [ '2.4.x', '2.5.x', '2.6.x' ]
1117
steps:
12-
- uses: actions/checkout@master
18+
- uses: actions/checkout@v1
1319
- run: git submodule update -i
1420
- name: Setup ruby
1521
uses: actions/setup-ruby@v1

.github/workflows/ruby-master.yml

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
name: ruby-master
2+
3+
on:
4+
pull_request:
5+
6+
push:
7+
branches:
8+
- staging
9+
- trying
10+
11+
jobs:
12+
ruby_master:
13+
runs-on: ubuntu-latest
14+
container:
15+
image: rubylang/ruby:master-nightly-bionic
16+
env:
17+
TEST_TOOL: "rubygems"
18+
steps:
19+
- name: Setup Requirements
20+
run: |
21+
gem install rake --no-document
22+
- uses: actions/checkout@v1
23+
- run: git submodule update -i
24+
- name: ruby -v
25+
run: ruby -v
26+
- name: Install Dependencies
27+
run: util/ci.sh before_script
28+
- name: Run Test
29+
run: util/ci.sh script

.github/workflows/ubuntu-bundler-master.yml

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,12 @@
11
name: ubuntu-bundler-master
22

3-
on: [push]
3+
on:
4+
pull_request:
5+
6+
push:
7+
branches:
8+
- staging
9+
- trying
410

511
jobs:
612
ubuntu_bundler_master:
@@ -9,7 +15,7 @@ jobs:
915
matrix:
1016
ruby: [ '2.6.x' ]
1117
steps:
12-
- uses: actions/checkout@master
18+
- uses: actions/checkout@v1
1319
- run: git submodule update -i
1420
- name: Fixed world writable dirs
1521
run: |

.github/workflows/ubuntu-lint.yml

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,18 @@
11
name: ubuntu-lint
22

3-
on: [push]
3+
on:
4+
pull_request:
5+
6+
push:
7+
branches:
8+
- staging
9+
- trying
410

511
jobs:
612
ubuntu_lint:
713
runs-on: ubuntu-latest
814
steps:
9-
- uses: actions/checkout@master
15+
- uses: actions/checkout@v1
1016
- run: git submodule update -i
1117
- name: Setup ruby
1218
uses: actions/setup-ruby@v1

.github/workflows/ubuntu-rvm.yml

Lines changed: 19 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -1,23 +1,21 @@
11
name: ubuntu-rvm
22

3-
on: [push]
3+
on:
4+
pull_request:
5+
6+
push:
7+
branches:
8+
- staging
9+
- trying
410

511
jobs:
612
ubuntu_rvm:
713
runs-on: ubuntu-latest
814
strategy:
915
matrix:
10-
ruby: [ 'ruby-head', 'jruby-9.2.8.0' ]
11-
test_tool: [ "rubygems", "bundler" ]
12-
include:
13-
- ruby: ruby-head
14-
test_tool: bundler
15-
bdv: master
16-
exclude:
17-
- ruby: jruby-9.2.8.0
18-
test_tool: bundler
16+
ruby: [ '2.3.8', 'ruby-head', 'jruby-9.2.9.0' ]
1917
steps:
20-
- uses: actions/checkout@master
18+
- uses: actions/checkout@v1
2119
- run: git submodule update -i
2220
- name: Fixed world writable dirs
2321
run: |
@@ -30,19 +28,23 @@ jobs:
3028
- name: Set up Ruby
3129
run: |
3230
source $HOME/.rvm/scripts/rvm
33-
rvm install ${{ matrix.ruby }} --binary
31+
rvm install ${{ matrix.ruby }} --binary --autolibs=disable
3432
rvm --default use ${{ matrix.ruby }}
35-
- name: Install dependencies
33+
- name: Test rubygems
3634
run: |
3735
source $HOME/.rvm/scripts/rvm
3836
util/ci.sh before_script
37+
util/ci.sh script
3938
env:
40-
TEST_TOOL: ${{ matrix.test_tool }}
41-
BDV: ${{ matrix.bdv }}
42-
- name: Run test
39+
TEST_TOOL: rubygems
40+
if: matrix.ruby == 'jruby-9.2.9.0' || matrix.ruby == '2.3.8'
41+
- name: Test bundler
4342
run: |
4443
source $HOME/.rvm/scripts/rvm
44+
BDV=master util/ci.sh before_script
4545
util/ci.sh script
46+
continue-on-error: true
4647
env:
47-
TEST_TOOL: ${{ matrix.test_tool }}
48+
TEST_TOOL: bundler
49+
if: matrix.ruby == 'ruby-head'
4850
timeout-minutes: 60

.github/workflows/ubuntu.yml

Lines changed: 9 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,22 @@
11
name: ubuntu
22

3-
on: [push]
3+
on:
4+
pull_request:
5+
6+
push:
7+
branches:
8+
- staging
9+
- trying
410

511
jobs:
612
ubuntu:
713
runs-on: ubuntu-latest
814
strategy:
915
matrix:
10-
ruby: [ '2.3.x', '2.4.x', '2.5.x', '2.6.x' ]
16+
ruby: [ '2.4.x', '2.5.x', '2.6.x' ]
1117
test_tool: [ "rubygems", "bundler" ]
1218
steps:
13-
- uses: actions/checkout@master
19+
- uses: actions/checkout@v1
1420
- run: git submodule update -i
1521
- name: Fixed world writable dirs
1622
run: |

.github/workflows/windows.yml

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,12 @@
11
name: windows
22

3-
on: [push]
3+
on:
4+
pull_request:
5+
6+
push:
7+
branches:
8+
- staging
9+
- trying
410

511
jobs:
612
windows:
@@ -9,7 +15,7 @@ jobs:
915
matrix:
1016
ruby: [ '2.4.x', '2.5.x', '2.6.x' ]
1117
steps:
12-
- uses: actions/checkout@master
18+
- uses: actions/checkout@v1
1319
- run: git submodule update -i
1420
- name: Setup ruby
1521
uses: actions/setup-ruby@v1

Manifest.txt

Lines changed: 15 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,6 @@ bundler/lib/bundler/fetcher/index.rb
7979
bundler/lib/bundler/friendly_errors.rb
8080
bundler/lib/bundler/gem_helper.rb
8181
bundler/lib/bundler/gem_helpers.rb
82-
bundler/lib/bundler/gem_remote_fetcher.rb
8382
bundler/lib/bundler/gem_tasks.rb
8483
bundler/lib/bundler/gem_version_promoter.rb
8584
bundler/lib/bundler/gemdeps.rb
@@ -172,7 +171,6 @@ bundler/lib/bundler/vendor/connection_pool/lib/connection_pool/monotonic_time.rb
172171
bundler/lib/bundler/vendor/connection_pool/lib/connection_pool/timed_stack.rb
173172
bundler/lib/bundler/vendor/connection_pool/lib/connection_pool/version.rb
174173
bundler/lib/bundler/vendor/fileutils/lib/fileutils.rb
175-
bundler/lib/bundler/vendor/fileutils/lib/fileutils/version.rb
176174
bundler/lib/bundler/vendor/molinillo/lib/molinillo.rb
177175
bundler/lib/bundler/vendor/molinillo/lib/molinillo/compatibility.rb
178176
bundler/lib/bundler/vendor/molinillo/lib/molinillo/delegates/resolution_state.rb
@@ -209,13 +207,13 @@ bundler/lib/bundler/vendor/thor/lib/thor/actions/inject_into_file.rb
209207
bundler/lib/bundler/vendor/thor/lib/thor/base.rb
210208
bundler/lib/bundler/vendor/thor/lib/thor/command.rb
211209
bundler/lib/bundler/vendor/thor/lib/thor/core_ext/hash_with_indifferent_access.rb
212-
bundler/lib/bundler/vendor/thor/lib/thor/core_ext/io_binary_read.rb
213210
bundler/lib/bundler/vendor/thor/lib/thor/error.rb
214211
bundler/lib/bundler/vendor/thor/lib/thor/group.rb
215212
bundler/lib/bundler/vendor/thor/lib/thor/invocation.rb
216213
bundler/lib/bundler/vendor/thor/lib/thor/line_editor.rb
217214
bundler/lib/bundler/vendor/thor/lib/thor/line_editor/basic.rb
218215
bundler/lib/bundler/vendor/thor/lib/thor/line_editor/readline.rb
216+
bundler/lib/bundler/vendor/thor/lib/thor/nested_context.rb
219217
bundler/lib/bundler/vendor/thor/lib/thor/parser.rb
220218
bundler/lib/bundler/vendor/thor/lib/thor/parser/argument.rb
221219
bundler/lib/bundler/vendor/thor/lib/thor/parser/arguments.rb
@@ -229,10 +227,24 @@ bundler/lib/bundler/vendor/thor/lib/thor/shell/color.rb
229227
bundler/lib/bundler/vendor/thor/lib/thor/shell/html.rb
230228
bundler/lib/bundler/vendor/thor/lib/thor/util.rb
231229
bundler/lib/bundler/vendor/thor/lib/thor/version.rb
230+
bundler/lib/bundler/vendor/uri/lib/uri.rb
231+
bundler/lib/bundler/vendor/uri/lib/uri/common.rb
232+
bundler/lib/bundler/vendor/uri/lib/uri/file.rb
233+
bundler/lib/bundler/vendor/uri/lib/uri/ftp.rb
234+
bundler/lib/bundler/vendor/uri/lib/uri/generic.rb
235+
bundler/lib/bundler/vendor/uri/lib/uri/http.rb
236+
bundler/lib/bundler/vendor/uri/lib/uri/https.rb
237+
bundler/lib/bundler/vendor/uri/lib/uri/ldap.rb
238+
bundler/lib/bundler/vendor/uri/lib/uri/ldaps.rb
239+
bundler/lib/bundler/vendor/uri/lib/uri/mailto.rb
240+
bundler/lib/bundler/vendor/uri/lib/uri/rfc2396_parser.rb
241+
bundler/lib/bundler/vendor/uri/lib/uri/rfc3986_parser.rb
242+
bundler/lib/bundler/vendor/uri/lib/uri/version.rb
232243
bundler/lib/bundler/vendored_fileutils.rb
233244
bundler/lib/bundler/vendored_molinillo.rb
234245
bundler/lib/bundler/vendored_persistent.rb
235246
bundler/lib/bundler/vendored_thor.rb
247+
bundler/lib/bundler/vendored_uri.rb
236248
bundler/lib/bundler/version.rb
237249
bundler/lib/bundler/version_ranges.rb
238250
bundler/lib/bundler/vlad.rb

bundler

0 commit comments

Comments
 (0)