actions / runner

The Runner for GitHub Actions :rocket:
https://github.com/features/actions
MIT License
4.78k stars 932 forks source link

Segmentation fault #2856

Closed mountriv99 closed 10 months ago

mountriv99 commented 12 months ago

Hi

I was testing out Github Actions with our Rails app and I tried to run with pretty much the default file:

name: "Ruby on Rails CI"
on:
  push:
    branches: [ "master", "staging2", "uat2" ]
  pull_request:
    branches: [ "master" ]
jobs:
  test:
    runs-on: ubuntu-latest
    services:
      postgres:
        image: postgres:11-alpine
        ports:
          - "5432:5432"
        env:
          POSTGRES_DB: rails_test
          POSTGRES_USER: rails
          POSTGRES_PASSWORD: password
    env:
      RAILS_ENV: test
      DATABASE_URL: "postgres://rails:password@localhost:5432/rails_test"
    steps:
      - name: Checkout code
        uses: actions/checkout@v3
      # Add or replace dependency steps here
      - name: Install Ruby and gems
        # uses: ruby/setup-ruby@55283cc23133118229fd3f97f9336ee23a179fcf # v1.146.0
        uses: ruby/setup-ruby@v1
        with:
          bundler-cache: true
          ruby-version: '2.3.0'
      # Add or replace database setup steps here
      - name: Set up database schema
        run: bin/rails db:schema:load
      # Add or replace test runners here
      - name: Run tests
        run: bin/rails test
        # run: bin/rake

Also tried different versions of ruby-setup, and tried ruby 2.3.1 and 2.3.0 but got the same segmentation error

Installing Bundler
  Using Bundler 1.17.3 from Gemfile.lock BUNDLED WITH 1.17.3
  /opt/hostedtoolcache/Ruby/2.3.0/x64/bin/gem install bundler -v 1.17.3
  /opt/hostedtoolcache/Ruby/2.3.0/x64/lib/ruby/2.3.0/rubygems/source.rb:193: [BUG] Segmentation fault at 0x00000000000010
  ruby 2.3.0p0 (2015-12-25 revision 53290) [x86_64-linux]

  -- Control frame information -----------------------------------------------
  c:0030 p:---- s:0168 e:000167 CFUNC  :load
  c:0029 p:0171 s:0164 e:000162 METHOD /opt/hostedtoolcache/Ruby/2.3.0/x64/lib/ruby/2.3.0/rubygems/source.rb:193
  c:0028 p:0038 s:0151 e:000147 METHOD /opt/hostedtoolcache/Ruby/2.3.0/x64/lib/ruby/2.3.0/rubygems/spec_fetcher.rb:263
  c:0027 p:0111 s:0142 e:000141 BLOCK  /opt/hostedtoolcache/Ruby/2.3.0/x64/lib/ruby/2.3.0/rubygems/spec_fetcher.rb:232 [FINISH]
  c:0026 p:---- s:0137 e:000136 CFUNC  :each
  c:0025 p:0013 s:0134 e:000133 METHOD /opt/hostedtoolcache/Ruby/2.3.0/x64/lib/ruby/2.3.0/rubygems/source_list.rb:98
  c:0024 p:0023 s:0130 E:000f18 METHOD /opt/hostedtoolcache/Ruby/2.3.0/x64/lib/ruby/2.3.0/rubygems/spec_fetcher.rb:223
  c:0023 p:0101 s:0124 E:001e00 METHOD /opt/hostedtoolcache/Ruby/2.3.0/x64/lib/ruby/2.3.0/rubygems/resolver/index_set.rb:22 [FINISH]
  c:0022 p:---- s:0117 e:000116 CFUNC  :new
  c:0021 p:0036 s:0113 e:000112 RESCUE /opt/hostedtoolcache/Ruby/2.3.0/x64/lib/ruby/2.3.0/rubygems/source.rb:94
  c:0020 p:0138 s:0110 e:000109 METHOD /opt/hostedtoolcache/Ruby/2.3.0/x64/lib/ruby/2.3.0/rubygems/source.rb:90
  c:0019 p:0012 s:0104 e:000102 BLOCK  /opt/hostedtoolcache/Ruby/2.3.0/x64/lib/ruby/2.3.0/rubygems/resolver/best_set.rb:24 [FINISH]
  c:0018 p:---- s:0100 e:000099 CFUNC  :each
  c:0017 p:0013 s:0097 e:000096 METHOD /opt/hostedtoolcache/Ruby/2.3.0/x64/lib/ruby/2.3.0/rubygems/source_list.rb:98
  c:0016 p:0011 s:0093 E:0015b0 METHOD /opt/hostedtoolcache/Ruby/2.3.0/x64/lib/ruby/2.3.0/rubygems/resolver/best_set.rb:23
  c:0015 p:0021 s:0090 e:000089 METHOD /opt/hostedtoolcache/Ruby/2.3.0/x64/lib/ruby/2.3.0/rubygems/resolver/best_set.rb:29
  c:0014 p:0206 s:0085 e:000083 METHOD /opt/hostedtoolcache/Ruby/2.3.0/x64/lib/ruby/2.3.0/rubygems/resolver/installer_set.rb:152
  c:0013 p:0031 s:0074 e:000073 METHOD /opt/hostedtoolcache/Ruby/2.3.0/x64/lib/ruby/2.3.0/rubygems/resolver/installer_set.rb:55
  c:0012 p:0350 s:0066 e:000065 METHOD /opt/hostedtoolcache/Ruby/2.3.0/x64/lib/ruby/2.3.0/rubygems/dependency_installer.rb:474
  c:0011 p:0122 s:0056 e:000055 METHOD /opt/hostedtoolcache/Ruby/2.3.0/x64/lib/ruby/2.3.0/rubygems/commands/install_command.rb:239
  c:0010 p:0035 s:0048 e:000047 BLOCK  /opt/hostedtoolcache/Ruby/2.3.0/x64/lib/ruby/2.3.0/rubygems/commands/install_command.rb:300 [FINISH]
  c:0009 p:---- s:0042 e:000041 CFUNC  :each
  c:0008 p:0017 s:0039 e:000038 METHOD /opt/hostedtoolcache/Ruby/2.3.0/x64/lib/ruby/2.3.0/rubygems/commands/install_command.rb:296
  c:0007 p:0107 s:0035 e:000034 METHOD /opt/hostedtoolcache/Ruby/2.3.0/x64/lib/ruby/2.3.0/rubygems/commands/install_command.rb:203
  c:0006 p:0076 s:0031 e:000030 METHOD /opt/hostedtoolcache/Ruby/2.3.0/x64/lib/ruby/2.3.0/rubygems/command.rb:308
  c:0005 p:0116 s:0026 e:000025 METHOD /opt/hostedtoolcache/Ruby/2.3.0/x64/lib/ruby/2.3.0/rubygems/command_manager.rb:169
  c:0004 p:0015 s:0019 e:000018 METHOD /opt/hostedtoolcache/Ruby/2.3.0/x64/lib/ruby/2.3.0/rubygems/command_manager.rb:139
  c:0003 p:0065 s:0013 e:000012 METHOD /opt/hostedtoolcache/Ruby/2.3.0/x64/lib/ruby/2.3.0/rubygems/gem_runner.rb:55
  c:0002 p:0126 s:0007 E:0003c8 EVAL   /opt/hostedtoolcache/Ruby/2.3.0/x64/bin/gem:21 [FINISH]
  c:0001 p:0000 s:0002 E:001ae0 (none) [FINISH]

  -- Ruby level backtrace information ----------------------------------------
  /opt/hostedtoolcache/Ruby/2.3.0/x64/bin/gem:21:in `<main>'
  /opt/hostedtoolcache/Ruby/2.3.0/x64/lib/ruby/2.3.0/rubygems/gem_runner.rb:55:in `run'
  /opt/hostedtoolcache/Ruby/2.3.0/x64/lib/ruby/2.3.0/rubygems/command_manager.rb:139:in `run'
  /opt/hostedtoolcache/Ruby/2.3.0/x64/lib/ruby/2.3.0/rubygems/command_manager.rb:169:in `process_args'
  /opt/hostedtoolcache/Ruby/2.3.0/x64/lib/ruby/2.3.0/rubygems/command.rb:308:in `invoke_with_build_args'
  /opt/hostedtoolcache/Ruby/2.3.0/x64/lib/ruby/2.3.0/rubygems/commands/install_command.rb:203:in `execute'
  /opt/hostedtoolcache/Ruby/2.3.0/x64/lib/ruby/2.3.0/rubygems/commands/install_command.rb:296:in `install_gems'
  /opt/hostedtoolcache/Ruby/2.3.0/x64/lib/ruby/2.3.0/rubygems/commands/install_command.rb:296:in `each'
  /opt/hostedtoolcache/Ruby/2.3.0/x64/lib/ruby/2.3.0/rubygems/commands/install_command.rb:300:in `block in install_gems'
  /opt/hostedtoolcache/Ruby/2.3.0/x64/lib/ruby/2.3.0/rubygems/commands/install_command.rb:239:in `install_gem'
  /opt/hostedtoolcache/Ruby/2.3.0/x64/lib/ruby/2.3.0/rubygems/dependency_installer.rb:474:in `resolve_dependencies'
  /opt/hostedtoolcache/Ruby/2.3.0/x64/lib/ruby/2.3.0/rubygems/resolver/installer_set.rb:55:in `add_always_install'
  /opt/hostedtoolcache/Ruby/2.3.0/x64/lib/ruby/2.3.0/rubygems/resolver/installer_set.rb:152:in `find_all'
  /opt/hostedtoolcache/Ruby/2.3.0/x64/lib/ruby/2.3.0/rubygems/resolver/best_set.rb:29:in `find_all'
  /opt/hostedtoolcache/Ruby/2.3.0/x64/lib/ruby/2.3.0/rubygems/resolver/best_set.rb:23:in `pick_sets'
  /opt/hostedtoolcache/Ruby/2.3.0/x64/lib/ruby/2.3.0/rubygems/source_list.rb:98:in `each_source'
  /opt/hostedtoolcache/Ruby/2.3.0/x64/lib/ruby/2.3.0/rubygems/source_list.rb:98:in `each'
  /opt/hostedtoolcache/Ruby/2.3.0/x64/lib/ruby/2.3.0/rubygems/resolver/best_set.rb:24:in `block in pick_sets'
  /opt/hostedtoolcache/Ruby/2.3.0/x64/lib/ruby/2.3.0/rubygems/source.rb:90:in `dependency_resolver_set'
  /opt/hostedtoolcache/Ruby/2.3.0/x64/lib/ruby/2.3.0/rubygems/source.rb:94:in `rescue in dependency_resolver_set'
  /opt/hostedtoolcache/Ruby/2.3.0/x64/lib/ruby/2.3.0/rubygems/source.rb:94:in `new'
  /opt/hostedtoolcache/Ruby/2.3.0/x64/lib/ruby/2.3.0/rubygems/resolver/index_set.rb:22:in `initialize'
  /opt/hostedtoolcache/Ruby/2.3.0/x64/lib/ruby/2.3.0/rubygems/spec_fetcher.rb:223:in `available_specs'
  /opt/hostedtoolcache/Ruby/2.3.0/x64/lib/ruby/2.3.0/rubygems/source_list.rb:98:in `each_source'
  /opt/hostedtoolcache/Ruby/2.3.0/x64/lib/ruby/2.3.0/rubygems/source_list.rb:98:in `each'
  /opt/hostedtoolcache/Ruby/2.3.0/x64/lib/ruby/2.3.0/rubygems/spec_fetcher.rb:232:in `block in available_specs'
  /opt/hostedtoolcache/Ruby/2.3.0/x64/lib/ruby/2.3.0/rubygems/spec_fetcher.rb:263:in `tuples_for'
  /opt/hostedtoolcache/Ruby/2.3.0/x64/lib/ruby/2.3.0/rubygems/source.rb:193:in `load_specs'
  /opt/hostedtoolcache/Ruby/2.3.0/x64/lib/ruby/2.3.0/rubygems/source.rb:193:in `load'

  -- Machine register context ------------------------------------------------
   RIP: 0x00007feb160c8b06 RBP: 0x000055c6904e7f80 RSP: 0x00007ffca4c49910
   RAX: 0x0000000000000000 RBX: 0x0000000000000000 RCX: 0x00000000000014c1
   RDX: 0x000055c690817cb0 RDI: 0x000055c6904e7f80 RSI: 0x0000000000003951
    R8: 0x0000000000000001  R9: 0x0000000000000106 R10: 0x000055c68fd1d120
   R11: 0x000055c6904da2f0 R12: 0x000055c6904e4650 R13: 0x0000000000000008
   R14: 0x000055c68ff20f70 R15: 0x000055c690817cb0 EFL: 0x0000000000010202

  -- C level backtrace information -------------------------------------------
  Unexpected size of .debug_line in /opt/hostedtoolcache/Ruby/2.3.0/x64/bin/ruby
  Unexpected size of .debug_line in /opt/hostedtoolcache/Ruby/2.3.0/x64/lib/libruby.so.2.3
  /opt/hostedtoolcache/Ruby/2.3.0/x64/lib/libruby.so.2.3(rb_vm_bugreport+0x4b7) [0x7feb161e41d7]
  /opt/hostedtoolcache/Ruby/2.3.0/x64/lib/libruby.so.2.3 [0x7feb1607d89d]
  /opt/hostedtoolcache/Ruby/2.3.0/x64/lib/libruby.so.2.3 [0x7feb161543d2]
  /lib/x86_64-linux-gnu/libc.so.6 [0x7feb15c42520]
  /opt/hostedtoolcache/Ruby/2.3.0/x64/lib/libruby.so.2.3 [0x7feb160c8b06]
  /opt/hostedtoolcache/Ruby/2.3.0/x64/lib/libruby.so.2.3 [0x7feb160c835f]
  /opt/hostedtoolcache/Ruby/2.3.0/x64/lib/libruby.so.2.3 [0x7feb160c835f]
  /opt/hostedtoolcache/Ruby/2.3.0/x64/lib/libruby.so.2.3 [0x7feb160c97c0]
  /opt/hostedtoolcache/Ruby/2.3.0/x64/lib/libruby.so.2.3 [0x7feb161c78a1]
  /opt/hostedtoolcache/Ruby/2.3.0/x64/lib/libruby.so.2.3 [0x7feb161d19c1]
  /opt/hostedtoolcache/Ruby/2.3.0/x64/lib/libruby.so.2.3 [0x7feb161d6bc0]
  /opt/hostedtoolcache/Ruby/2.3.0/x64/lib/libruby.so.2.3(rb_yield+0x3af) [0x7feb161d993f]
  /opt/hostedtoolcache/Ruby/2.3.0/x64/lib/libruby.so.2.3(rb_ary_each+0x3c) [0x7feb16034b6c]
  /opt/hostedtoolcache/Ruby/2.3.0/x64/lib/libruby.so.2.3 [0x7feb161c78a1]
  /opt/hostedtoolcache/Ruby/2.3.0/x64/lib/libruby.so.2.3 [0x7feb161d18cc]
  /opt/hostedtoolcache/Ruby/2.3.0/x64/lib/libruby.so.2.3 [0x7feb161d6bc0]
  /opt/hostedtoolcache/Ruby/2.3.0/x64/lib/libruby.so.2.3 [0x7feb161dd5e2]
  /opt/hostedtoolcache/Ruby/2.3.0/x64/lib/libruby.so.2.3(rb_class_new_instance+0x26) [0x7feb160e1d46]
  /opt/hostedtoolcache/Ruby/2.3.0/x64/lib/libruby.so.2.3 [0x7feb161c78a1]
  /opt/hostedtoolcache/Ruby/2.3.0/x64/lib/libruby.so.2.3 [0x7feb161d19c1]
  /opt/hostedtoolcache/Ruby/2.3.0/x64/lib/libruby.so.2.3 [0x7feb161d6bc0]
  /opt/hostedtoolcache/Ruby/2.3.0/x64/lib/libruby.so.2.3(rb_yield+0x3af) [0x7feb161d993f]
  /opt/hostedtoolcache/Ruby/2.3.0/x64/lib/libruby.so.2.3(rb_ary_each+0x3c) [0x7feb16034b6c]
  /opt/hostedtoolcache/Ruby/2.3.0/x64/lib/libruby.so.2.3 [0x7feb161c78a1]
  /opt/hostedtoolcache/Ruby/2.3.0/x64/lib/libruby.so.2.3 [0x7feb161d18cc]
  /opt/hostedtoolcache/Ruby/2.3.0/x64/lib/libruby.so.2.3 [0x7feb161d6bc0]
  /opt/hostedtoolcache/Ruby/2.3.0/x64/lib/libruby.so.2.3(rb_yield+0x3af) [0x7feb161d993f]
  /opt/hostedtoolcache/Ruby/2.3.0/x64/lib/libruby.so.2.3(rb_ary_each+0x3c) [0x7feb16034b6c]
  /opt/hostedtoolcache/Ruby/2.3.0/x64/lib/libruby.so.2.3 [0x7feb161c78a1]
  /opt/hostedtoolcache/Ruby/2.3.0/x64/lib/libruby.so.2.3 [0x7feb161d18cc]
  /opt/hostedtoolcache/Ruby/2.3.0/x64/lib/libruby.so.2.3 [0x7feb161d6bc0]
  /opt/hostedtoolcache/Ruby/2.3.0/x64/lib/libruby.so.2.3 [0x7feb160812f3]
  /opt/hostedtoolcache/Ruby/2.3.0/x64/lib/libruby.so.2.3(ruby_exec_node+0x21) [0x7feb16082e81]
  /opt/hostedtoolcache/Ruby/2.3.0/x64/lib/libruby.so.2.3(ruby_run_node+0x22) [0x7feb16085922]
  /opt/hostedtoolcache/Ruby/2.3.0/x64/bin/ruby [0x55c68f09f14f]
  /lib/x86_64-linux-gnu/libc.so.6 [0x7feb15c29d90]
  /lib/x86_64-linux-gnu/libc.so.6(__libc_start_main+0x80) [0x7feb15c29e40]
  /opt/hostedtoolcache/Ruby/2.3.0/x64/bin/ruby(_start+0x25) [0x55c68f09f185]

  -- Other runtime information -----------------------------------------------

  * Loaded script: /opt/hostedtoolcache/Ruby/2.3.0/x64/bin/gem

  * Loaded features:

      0 enumerator.so
      1 thread.rb
      2 rational.so
      3 complex.so
      4 /opt/hostedtoolcache/Ruby/2.3.0/x64/lib/ruby/2.3.0/x86_64-linux/enc/encdb.so
      5 /opt/hostedtoolcache/Ruby/2.3.0/x64/lib/ruby/2.3.0/x86_64-linux/enc/trans/transdb.so
      6 /opt/hostedtoolcache/Ruby/2.3.0/x64/lib/ruby/2.3.0/unicode_normalize.rb
      7 /opt/hostedtoolcache/Ruby/2.3.0/x64/lib/ruby/2.3.0/x86_64-linux/rbconfig.rb
      8 /opt/hostedtoolcache/Ruby/2.3.0/x64/lib/ruby/2.3.0/rubygems/compatibility.rb
      9 /opt/hostedtoolcache/Ruby/2.3.0/x64/lib/ruby/2.3.0/rubygems/defaults.rb
     10 /opt/hostedtoolcache/Ruby/2.3.0/x64/lib/ruby/2.3.0/rubygems/deprecate.rb
     11 /opt/hostedtoolcache/Ruby/2.3.0/x64/lib/ruby/2.3.0/rubygems/errors.rb
     12 /opt/hostedtoolcache/Ruby/2.3.0/x64/lib/ruby/2.3.0/rubygems/version.rb
     13 /opt/hostedtoolcache/Ruby/2.3.0/x64/lib/ruby/2.3.0/rubygems/requirement.rb
     14 /opt/hostedtoolcache/Ruby/2.3.0/x64/lib/ruby/2.3.0/rubygems/platform.rb
     15 /opt/hostedtoolcache/Ruby/2.3.0/x64/lib/ruby/2.3.0/rubygems/basic_specification.rb
     16 /opt/hostedtoolcache/Ruby/2.3.0/x64/lib/ruby/2.3.0/rubygems/stub_specification.rb
     17 /opt/hostedtoolcache/Ruby/2.3.0/x64/lib/ruby/2.3.0/rubygems/util/list.rb
     18 /opt/hostedtoolcache/Ruby/2.3.0/x64/lib/ruby/2.3.0/x86_64-linux/stringio.so
     19 /opt/hostedtoolcache/Ruby/2.3.0/x64/lib/ruby/2.3.0/rubygems/specification.rb
     20 /opt/hostedtoolcache/Ruby/2.3.0/x64/lib/ruby/2.3.0/rubygems/exceptions.rb
     21 /opt/hostedtoolcache/Ruby/2.3.0/x64/lib/ruby/2.3.0/rubygems/core_ext/kernel_gem.rb
     22 /opt/hostedtoolcache/Ruby/2.3.0/x64/lib/ruby/2.3.0/monitor.rb
     23 /opt/hostedtoolcache/Ruby/2.3.0/x64/lib/ruby/2.3.0/rubygems/core_ext/kernel_require.rb
     24 /opt/hostedtoolcache/Ruby/2.3.0/x64/lib/ruby/2.3.0/rubygems.rb
     25 /opt/hostedtoolcache/Ruby/2.3.0/x64/lib/ruby/2.3.0/rubygems/path_support.rb
     26 /opt/hostedtoolcache/Ruby/2.3.0/x64/lib/ruby/2.3.0/rubygems/dependency.rb
     27 /opt/hostedtoolcache/Ruby/2.3.0/x64/lib/ruby/gems/2.3.0/gems/did_you_mean-1.0.0/lib/did_you_mean/version.rb
     28 /opt/hostedtoolcache/Ruby/2.3.0/x64/lib/ruby/gems/2.3.0/gems/did_you_mean-1.0.0/lib/did_you_mean/core_ext/name_error.rb
     29 /opt/hostedtoolcache/Ruby/2.3.0/x64/lib/ruby/gems/2.3.0/gems/did_you_mean-1.0.0/lib/did_you_mean/levenshtein.rb
     30 /opt/hostedtoolcache/Ruby/2.3.0/x64/lib/ruby/gems/2.3.0/gems/did_you_mean-1.0.0/lib/did_you_mean/jaro_winkler.rb
     31 /opt/hostedtoolcache/Ruby/2.3.0/x64/lib/ruby/gems/2.3.0/gems/did_you_mean-1.0.0/lib/did_you_mean/spell_checkable.rb
     32 /opt/hostedtoolcache/Ruby/2.3.0/x64/lib/ruby/2.3.0/delegate.rb
     33 /opt/hostedtoolcache/Ruby/2.3.0/x64/lib/ruby/gems/2.3.0/gems/did_you_mean-1.0.0/lib/did_you_mean/spell_checkers/name_error_checkers/class_name_checker.rb
     34 /opt/hostedtoolcache/Ruby/2.3.0/x64/lib/ruby/gems/2.3.0/gems/did_you_mean-1.0.0/lib/did_you_mean/spell_checkers/name_error_checkers/variable_name_checker.rb
     35 /opt/hostedtoolcache/Ruby/2.3.0/x64/lib/ruby/gems/2.3.0/gems/did_you_mean-1.0.0/lib/did_you_mean/spell_checkers/name_error_checkers.rb
     36 /opt/hostedtoolcache/Ruby/2.3.0/x64/lib/ruby/gems/2.3.0/gems/did_you_mean-1.0.0/lib/did_you_mean/spell_checkers/method_name_checker.rb
     37 /opt/hostedtoolcache/Ruby/2.3.0/x64/lib/ruby/gems/2.3.0/gems/did_you_mean-1.0.0/lib/did_you_mean/spell_checkers/null_checker.rb
     38 /opt/hostedtoolcache/Ruby/2.3.0/x64/lib/ruby/gems/2.3.0/gems/did_you_mean-1.0.0/lib/did_you_mean/formatter.rb
     39 /opt/hostedtoolcache/Ruby/2.3.0/x64/lib/ruby/gems/2.3.0/gems/did_you_mean-1.0.0/lib/did_you_mean.rb
     40 /opt/hostedtoolcache/Ruby/2.3.0/x64/lib/ruby/2.3.0/optparse.rb
     41 /opt/hostedtoolcache/Ruby/2.3.0/x64/lib/ruby/2.3.0/x86_64-linux/io/console.so
     42 /opt/hostedtoolcache/Ruby/2.3.0/x64/lib/ruby/2.3.0/rubygems/user_interaction.rb
     43 /opt/hostedtoolcache/Ruby/2.3.0/x64/lib/ruby/2.3.0/rubygems/command.rb
     44 /opt/hostedtoolcache/Ruby/2.3.0/x64/lib/ruby/2.3.0/rubygems/command_manager.rb
     45 /opt/hostedtoolcache/Ruby/2.3.0/x64/lib/ruby/2.3.0/x86_64-linux/etc.so
     46 /opt/hostedtoolcache/Ruby/2.3.0/x64/lib/ruby/2.3.0/rubygems/config_file.rb
     47 /opt/hostedtoolcache/Ruby/2.3.0/x64/lib/ruby/2.3.0/rubygems/gem_runner.rb
     48 /opt/hostedtoolcache/Ruby/2.3.0/x64/lib/ruby/2.3.0/psych/exception.rb
     49 /opt/hostedtoolcache/Ruby/2.3.0/x64/lib/ruby/2.3.0/psych/syntax_error.rb
     50 /opt/hostedtoolcache/Ruby/2.3.0/x64/lib/ruby/2.3.0/x86_64-linux/psych.so
     51 /opt/hostedtoolcache/Ruby/2.3.0/x64/lib/ruby/2.3.0/psych/omap.rb
     52 /opt/hostedtoolcache/Ruby/2.3.0/x64/lib/ruby/2.3.0/psych/set.rb
     53 /opt/hostedtoolcache/Ruby/2.3.0/x64/lib/ruby/2.3.0/psych/class_loader.rb
     54 /opt/hostedtoolcache/Ruby/2.3.0/x64/lib/ruby/2.3.0/x86_64-linux/strscan.so
     55 /opt/hostedtoolcache/Ruby/2.3.0/x64/lib/ruby/2.3.0/psych/scalar_scanner.rb
     56 /opt/hostedtoolcache/Ruby/2.3.0/x64/lib/ruby/2.3.0/psych/nodes/node.rb
     57 /opt/hostedtoolcache/Ruby/2.3.0/x64/lib/ruby/2.3.0/psych/nodes/stream.rb
     58 /opt/hostedtoolcache/Ruby/2.3.0/x64/lib/ruby/2.3.0/psych/nodes/document.rb
     59 /opt/hostedtoolcache/Ruby/2.3.0/x64/lib/ruby/2.3.0/psych/nodes/sequence.rb
     60 /opt/hostedtoolcache/Ruby/2.3.0/x64/lib/ruby/2.3.0/psych/nodes/scalar.rb
     61 /opt/hostedtoolcache/Ruby/2.3.0/x64/lib/ruby/2.3.0/psych/nodes/mapping.rb
     62 /opt/hostedtoolcache/Ruby/2.3.0/x64/lib/ruby/2.3.0/psych/nodes/alias.rb
     63 /opt/hostedtoolcache/Ruby/2.3.0/x64/lib/ruby/2.3.0/psych/nodes.rb
     64 /opt/hostedtoolcache/Ruby/2.3.0/x64/lib/ruby/2.3.0/psych/streaming.rb
     65 /opt/hostedtoolcache/Ruby/2.3.0/x64/lib/ruby/2.3.0/psych/visitors/visitor.rb
     66 /opt/hostedtoolcache/Ruby/2.3.0/x64/lib/ruby/2.3.0/psych/visitors/to_ruby.rb
     67 /opt/hostedtoolcache/Ruby/2.3.0/x64/lib/ruby/2.3.0/psych/visitors/emitter.rb
     68 /opt/hostedtoolcache/Ruby/2.3.0/x64/lib/ruby/2.3.0/psych/handler.rb
     69 /opt/hostedtoolcache/Ruby/2.3.0/x64/lib/ruby/2.3.0/psych/tree_builder.rb
     70 /opt/hostedtoolcache/Ruby/2.3.0/x64/lib/ruby/2.3.0/psych/visitors/yaml_tree.rb
     71 /opt/hostedtoolcache/Ruby/2.3.0/x64/lib/ruby/2.3.0/psych/json/ruby_events.rb
     72 /opt/hostedtoolcache/Ruby/2.3.0/x64/lib/ruby/2.3.0/psych/visitors/json_tree.rb
     73 /opt/hostedtoolcache/Ruby/2.3.0/x64/lib/ruby/2.3.0/psych/visitors/depth_first.rb
     74 /opt/hostedtoolcache/Ruby/2.3.0/x64/lib/ruby/2.3.0/psych/visitors.rb
     75 /opt/hostedtoolcache/Ruby/2.3.0/x64/lib/ruby/2.3.0/psych/parser.rb
     76 /opt/hostedtoolcache/Ruby/2.3.0/x64/lib/ruby/2.3.0/psych/coder.rb
     77 /opt/hostedtoolcache/Ruby/2.3.0/x64/lib/ruby/2.3.0/psych/core_ext.rb
     78 /opt/hostedtoolcache/Ruby/2.3.0/x64/lib/ruby/2.3.0/x86_64-linux/date_core.so
     79 /opt/hostedtoolcache/Ruby/2.3.0/x64/lib/ruby/2.3.0/date.rb
     80 /opt/hostedtoolcache/Ruby/2.3.0/x64/lib/ruby/2.3.0/psych/deprecated.rb
     81 /opt/hostedtoolcache/Ruby/2.3.0/x64/lib/ruby/2.3.0/psych/stream.rb
     82 /opt/hostedtoolcache/Ruby/2.3.0/x64/lib/ruby/2.3.0/psych/json/yaml_events.rb
     83 /opt/hostedtoolcache/Ruby/2.3.0/x64/lib/ruby/2.3.0/psych/json/tree_builder.rb
     84 /opt/hostedtoolcache/Ruby/2.3.0/x64/lib/ruby/2.3.0/psych/json/stream.rb
     85 /opt/hostedtoolcache/Ruby/2.3.0/x64/lib/ruby/2.3.0/psych/handlers/document_stream.rb
     86 /opt/hostedtoolcache/Ruby/2.3.0/x64/lib/ruby/2.3.0/psych.rb
     87 /opt/hostedtoolcache/Ruby/2.3.0/x64/lib/ruby/2.3.0/rubygems/psych_additions.rb
     88 /opt/hostedtoolcache/Ruby/2.3.0/x64/lib/ruby/2.3.0/rubygems/psych_tree.rb
     89 /opt/hostedtoolcache/Ruby/2.3.0/x64/lib/ruby/2.3.0/yaml.rb
     90 /opt/hostedtoolcache/Ruby/2.3.0/x64/lib/ruby/2.3.0/rubygems/syck_hack.rb
     91 /opt/hostedtoolcache/Ruby/2.3.0/x64/lib/ruby/2.3.0/x86_64-linux/enc/utf_16le.so
     92 /opt/hostedtoolcache/Ruby/2.3.0/x64/lib/ruby/2.3.0/x86_64-linux/enc/utf_16be.so
     93 /opt/hostedtoolcache/Ruby/2.3.0/x64/lib/ruby/2.3.0/timeout.rb
     94 /opt/hostedtoolcache/Ruby/2.3.0/x64/lib/ruby/2.3.0/rubygems/install_update_options.rb
     95 /opt/hostedtoolcache/Ruby/2.3.0/x64/lib/ruby/2.3.0/tsort.rb
     96 /opt/hostedtoolcache/Ruby/2.3.0/x64/lib/ruby/2.3.0/rubygems/dependency_list.rb
     97 /opt/hostedtoolcache/Ruby/2.3.0/x64/lib/ruby/2.3.0/fileutils.rb
     98 /opt/hostedtoolcache/Ruby/2.3.0/x64/lib/ruby/2.3.0/x86_64-linux/digest.so
     99 /opt/hostedtoolcache/Ruby/2.3.0/x64/lib/ruby/2.3.0/digest.rb
    100 /opt/hostedtoolcache/Ruby/2.3.0/x64/lib/ruby/2.3.0/x86_64-linux/openssl.so
    101 /opt/hostedtoolcache/Ruby/2.3.0/x64/lib/ruby/2.3.0/openssl/bn.rb
    102 /opt/hostedtoolcache/Ruby/2.3.0/x64/lib/ruby/2.3.0/openssl/pkey.rb
    103 /opt/hostedtoolcache/Ruby/2.3.0/x64/lib/ruby/2.3.0/openssl/cipher.rb
    104 /opt/hostedtoolcache/Ruby/2.3.0/x64/lib/ruby/2.3.0/openssl/config.rb
    105 /opt/hostedtoolcache/Ruby/2.3.0/x64/lib/ruby/2.3.0/openssl/digest.rb
    106 /opt/hostedtoolcache/Ruby/2.3.0/x64/lib/ruby/2.3.0/openssl/x509.rb
    107 /opt/hostedtoolcache/Ruby/2.3.0/x64/lib/ruby/2.3.0/openssl/buffering.rb
    108 /opt/hostedtoolcache/Ruby/2.3.0/x64/lib/ruby/2.3.0/x86_64-linux/io/nonblock.so
    109 /opt/hostedtoolcache/Ruby/2.3.0/x64/lib/ruby/2.3.0/openssl/ssl.rb
    110 /opt/hostedtoolcache/Ruby/2.3.0/x64/lib/ruby/2.3.0/openssl.rb
    111 /opt/hostedtoolcache/Ruby/2.3.0/x64/lib/ruby/2.3.0/rubygems/security/policy.rb
    112 /opt/hostedtoolcache/Ruby/2.3.0/x64/lib/ruby/2.3.0/rubygems/security/policies.rb
    113 /opt/hostedtoolcache/Ruby/2.3.0/x64/lib/ruby/2.3.0/rubygems/security/trust_dir.rb
    114 /opt/hostedtoolcache/Ruby/2.3.0/x64/lib/ruby/2.3.0/rubygems/security/signer.rb
    115 /opt/hostedtoolcache/Ruby/2.3.0/x64/lib/ruby/2.3.0/rubygems/security.rb
    116 /opt/hostedtoolcache/Ruby/2.3.0/x64/lib/ruby/2.3.0/x86_64-linux/zlib.so
    117 /opt/hostedtoolcache/Ruby/2.3.0/x64/lib/ruby/2.3.0/rubygems/package/digest_io.rb
    118 /opt/hostedtoolcache/Ruby/2.3.0/x64/lib/ruby/2.3.0/rubygems/package/source.rb
    119 /opt/hostedtoolcache/Ruby/2.3.0/x64/lib/ruby/2.3.0/rubygems/package/file_source.rb
    120 /opt/hostedtoolcache/Ruby/2.3.0/x64/lib/ruby/2.3.0/rubygems/package/io_source.rb
    121 /opt/hostedtoolcache/Ruby/2.3.0/x64/lib/ruby/2.3.0/rubygems/package/old.rb
    122 /opt/hostedtoolcache/Ruby/2.3.0/x64/lib/ruby/2.3.0/rubygems/package/tar_header.rb
    123 /opt/hostedtoolcache/Ruby/2.3.0/x64/lib/ruby/2.3.0/rubygems/package/tar_reader/entry.rb
    124 /opt/hostedtoolcache/Ruby/2.3.0/x64/lib/ruby/2.3.0/rubygems/package/tar_reader.rb
    125 /opt/hostedtoolcache/Ruby/2.3.0/x64/lib/ruby/2.3.0/rubygems/package/tar_writer.rb
    126 /opt/hostedtoolcache/Ruby/2.3.0/x64/lib/ruby/2.3.0/rubygems/package.rb
    127 /opt/hostedtoolcache/Ruby/2.3.0/x64/lib/ruby/2.3.0/rubygems/ext/build_error.rb
    128 /opt/hostedtoolcache/Ruby/2.3.0/x64/lib/ruby/2.3.0/rubygems/ext/builder.rb
    129 /opt/hostedtoolcache/Ruby/2.3.0/x64/lib/ruby/2.3.0/rubygems/ext/configure_builder.rb
    130 /opt/hostedtoolcache/Ruby/2.3.0/x64/lib/ruby/2.3.0/tmpdir.rb
    131 /opt/hostedtoolcache/Ruby/2.3.0/x64/lib/ruby/2.3.0/tempfile.rb
    132 /opt/hostedtoolcache/Ruby/2.3.0/x64/lib/ruby/2.3.0/rubygems/ext/ext_conf_builder.rb
    133 /opt/hostedtoolcache/Ruby/2.3.0/x64/lib/ruby/2.3.0/rubygems/ext/rake_builder.rb
    134 /opt/hostedtoolcache/Ruby/2.3.0/x64/lib/ruby/2.3.0/rubygems/ext/cmake_builder.rb
    135 /opt/hostedtoolcache/Ruby/2.3.0/x64/lib/ruby/2.3.0/rubygems/ext.rb
    136 /opt/hostedtoolcache/Ruby/2.3.0/x64/lib/ruby/2.3.0/rubygems/installer.rb
    137 /opt/hostedtoolcache/Ruby/2.3.0/x64/lib/ruby/2.3.0/x86_64-linux/socket.so
    138 /opt/hostedtoolcache/Ruby/2.3.0/x64/lib/ruby/2.3.0/x86_64-linux/io/wait.so
    139 /opt/hostedtoolcache/Ruby/2.3.0/x64/lib/ruby/2.3.0/socket.rb
    140 /opt/hostedtoolcache/Ruby/2.3.0/x64/lib/ruby/2.3.0/net/protocol.rb
    141 /opt/hostedtoolcache/Ruby/2.3.0/x64/lib/ruby/2.3.0/uri/rfc2396_parser.rb
    142 /opt/hostedtoolcache/Ruby/2.3.0/x64/lib/ruby/2.3.0/uri/rfc3986_parser.rb
    143 /opt/hostedtoolcache/Ruby/2.3.0/x64/lib/ruby/2.3.0/uri/common.rb
    144 /opt/hostedtoolcache/Ruby/2.3.0/x64/lib/ruby/2.3.0/uri/generic.rb
    145 /opt/hostedtoolcache/Ruby/2.3.0/x64/lib/ruby/2.3.0/uri/ftp.rb
    146 /opt/hostedtoolcache/Ruby/2.3.0/x64/lib/ruby/2.3.0/uri/http.rb
    147 /opt/hostedtoolcache/Ruby/2.3.0/x64/lib/ruby/2.3.0/uri/https.rb
    148 /opt/hostedtoolcache/Ruby/2.3.0/x64/lib/ruby/2.3.0/uri/ldap.rb
    149 /opt/hostedtoolcache/Ruby/2.3.0/x64/lib/ruby/2.3.0/uri/ldaps.rb
    150 /opt/hostedtoolcache/Ruby/2.3.0/x64/lib/ruby/2.3.0/uri/mailto.rb
    151 /opt/hostedtoolcache/Ruby/2.3.0/x64/lib/ruby/2.3.0/uri.rb
    152 /opt/hostedtoolcache/Ruby/2.3.0/x64/lib/ruby/2.3.0/net/http/exceptions.rb
    153 /opt/hostedtoolcache/Ruby/2.3.0/x64/lib/ruby/2.3.0/net/http/header.rb
    154 /opt/hostedtoolcache/Ruby/2.3.0/x64/lib/ruby/2.3.0/x86_64-linux/enc/windows_31j.so
    155 /opt/hostedtoolcache/Ruby/2.3.0/x64/lib/ruby/2.3.0/net/http/generic_request.rb
    156 /opt/hostedtoolcache/Ruby/2.3.0/x64/lib/ruby/2.3.0/net/http/request.rb
    157 /opt/hostedtoolcache/Ruby/2.3.0/x64/lib/ruby/2.3.0/net/http/requests.rb
    158 /opt/hostedtoolcache/Ruby/2.3.0/x64/lib/ruby/2.3.0/net/http/response.rb
    159 /opt/hostedtoolcache/Ruby/2.3.0/x64/lib/ruby/2.3.0/net/http/responses.rb
    160 /opt/hostedtoolcache/Ruby/2.3.0/x64/lib/ruby/2.3.0/net/http/proxy_delta.rb
    161 /opt/hostedtoolcache/Ruby/2.3.0/x64/lib/ruby/2.3.0/net/http/backward.rb
    162 /opt/hostedtoolcache/Ruby/2.3.0/x64/lib/ruby/2.3.0/net/http.rb
    163 /opt/hostedtoolcache/Ruby/2.3.0/x64/lib/ruby/2.3.0/time.rb
    164 /opt/hostedtoolcache/Ruby/2.3.0/x64/lib/ruby/2.3.0/rubygems/request/http_pool.rb
    165 /opt/hostedtoolcache/Ruby/2.3.0/x64/lib/ruby/2.3.0/rubygems/request/https_pool.rb
    166 /opt/hostedtoolcache/Ruby/2.3.0/x64/lib/ruby/2.3.0/rubygems/request/connection_pools.rb
    167 /opt/hostedtoolcache/Ruby/2.3.0/x64/lib/ruby/2.3.0/rubygems/request.rb
    168 /opt/hostedtoolcache/Ruby/2.3.0/x64/lib/ruby/2.3.0/cgi/core.rb
    169 /opt/hostedtoolcache/Ruby/2.3.0/x64/lib/ruby/2.3.0/x86_64-linux/cgi/escape.so
    170 /opt/hostedtoolcache/Ruby/2.3.0/x64/lib/ruby/2.3.0/cgi/util.rb
    171 /opt/hostedtoolcache/Ruby/2.3.0/x64/lib/ruby/2.3.0/cgi/cookie.rb
    172 /opt/hostedtoolcache/Ruby/2.3.0/x64/lib/ruby/2.3.0/cgi.rb
    173 /opt/hostedtoolcache/Ruby/2.3.0/x64/lib/ruby/2.3.0/rubygems/uri_formatter.rb
    174 /opt/hostedtoolcache/Ruby/2.3.0/x64/lib/ruby/2.3.0/securerandom.rb
    175 /opt/hostedtoolcache/Ruby/2.3.0/x64/lib/ruby/2.3.0/resolv.rb
    176 /opt/hostedtoolcache/Ruby/2.3.0/x64/lib/ruby/2.3.0/rubygems/remote_fetcher.rb
    177 /opt/hostedtoolcache/Ruby/2.3.0/x64/lib/ruby/2.3.0/rubygems/text.rb
    178 /opt/hostedtoolcache/Ruby/2.3.0/x64/lib/ruby/2.3.0/rubygems/name_tuple.rb
    179 /opt/hostedtoolcache/Ruby/2.3.0/x64/lib/ruby/2.3.0/rubygems/spec_fetcher.rb
    180 /opt/hostedtoolcache/Ruby/2.3.0/x64/lib/ruby/2.3.0/rubygems/util.rb
    181 /opt/hostedtoolcache/Ruby/2.3.0/x64/lib/ruby/2.3.0/rubygems/source/git.rb
    182 /opt/hostedtoolcache/Ruby/2.3.0/x64/lib/ruby/2.3.0/rubygems/source/installed.rb
    183 /opt/hostedtoolcache/Ruby/2.3.0/x64/lib/ruby/2.3.0/rubygems/source/specific_file.rb
    184 /opt/hostedtoolcache/Ruby/2.3.0/x64/lib/ruby/2.3.0/rubygems/source/local.rb
    185 /opt/hostedtoolcache/Ruby/2.3.0/x64/lib/ruby/2.3.0/rubygems/source/lock.rb
    186 /opt/hostedtoolcache/Ruby/2.3.0/x64/lib/ruby/2.3.0/rubygems/source/vendor.rb
    187 /opt/hostedtoolcache/Ruby/2.3.0/x64/lib/ruby/2.3.0/rubygems/source.rb
    188 /opt/hostedtoolcache/Ruby/2.3.0/x64/lib/ruby/2.3.0/rubygems/available_set.rb
    189 /opt/hostedtoolcache/Ruby/2.3.0/x64/lib/ruby/2.3.0/rubygems/dependency_installer.rb
    190 /opt/hostedtoolcache/Ruby/2.3.0/x64/lib/ruby/2.3.0/rubygems/local_remote_options.rb
    191 /opt/hostedtoolcache/Ruby/2.3.0/x64/lib/ruby/2.3.0/rubygems/validator.rb
    192 /opt/hostedtoolcache/Ruby/2.3.0/x64/lib/ruby/2.3.0/rubygems/version_option.rb
    193 /opt/hostedtoolcache/Ruby/2.3.0/x64/lib/ruby/2.3.0/rubygems/commands/install_command.rb
    194 /opt/hostedtoolcache/Ruby/2.3.0/x64/lib/ruby/2.3.0/rubygems/install_message.rb
    195 /opt/hostedtoolcache/Ruby/2.3.0/x64/lib/ruby/2.3.0/rubygems/request_set/gem_dependency_api.rb
    196 /opt/hostedtoolcache/Ruby/2.3.0/x64/lib/ruby/2.3.0/rubygems/request_set/lockfile/parser.rb
    197 /opt/hostedtoolcache/Ruby/2.3.0/x64/lib/ruby/2.3.0/rubygems/request_set/lockfile/tokenizer.rb
    198 /opt/hostedtoolcache/Ruby/2.3.0/x64/lib/ruby/2.3.0/rubygems/request_set/lockfile.rb
    199 /opt/hostedtoolcache/Ruby/2.3.0/x64/lib/ruby/2.3.0/rubygems/request_set.rb
    200 /opt/hostedtoolcache/Ruby/2.3.0/x64/lib/ruby/2.3.0/rubygems/resolver/molinillo/lib/molinillo/gem_metadata.rb
    201 /opt/hostedtoolcache/Ruby/2.3.0/x64/lib/ruby/2.3.0/rubygems/resolver/molinillo/lib/molinillo/errors.rb
    202 /opt/hostedtoolcache/Ruby/2.3.0/x64/lib/ruby/2.3.0/set.rb
    203 /opt/hostedtoolcache/Ruby/2.3.0/x64/lib/ruby/2.3.0/rubygems/resolver/molinillo/lib/molinillo/dependency_graph.rb
    204 /opt/hostedtoolcache/Ruby/2.3.0/x64/lib/ruby/2.3.0/rubygems/resolver/molinillo/lib/molinillo/state.rb
    205 /opt/hostedtoolcache/Ruby/2.3.0/x64/lib/ruby/2.3.0/rubygems/resolver/molinillo/lib/molinillo/modules/specification_provider.rb
    206 /opt/hostedtoolcache/Ruby/2.3.0/x64/lib/ruby/2.3.0/rubygems/resolver/molinillo/lib/molinillo/resolution.rb
    207 /opt/hostedtoolcache/Ruby/2.3.0/x64/lib/ruby/2.3.0/rubygems/resolver/molinillo/lib/molinillo/resolver.rb
    208 /opt/hostedtoolcache/Ruby/2.3.0/x64/lib/ruby/2.3.0/rubygems/resolver/molinillo/lib/molinillo/modules/ui.rb
    209 /opt/hostedtoolcache/Ruby/2.3.0/x64/lib/ruby/2.3.0/rubygems/resolver/molinillo/lib/molinillo.rb
    210 /opt/hostedtoolcache/Ruby/2.3.0/x64/lib/ruby/2.3.0/rubygems/resolver/molinillo.rb
    211 /opt/hostedtoolcache/Ruby/2.3.0/x64/lib/ruby/2.3.0/rubygems/resolver/activation_request.rb
    212 /opt/hostedtoolcache/Ruby/2.3.0/x64/lib/ruby/2.3.0/rubygems/resolver/conflict.rb
    213 /opt/hostedtoolcache/Ruby/2.3.0/x64/lib/ruby/2.3.0/rubygems/resolver/dependency_request.rb
    214 /opt/hostedtoolcache/Ruby/2.3.0/x64/lib/ruby/2.3.0/rubygems/resolver/requirement_list.rb
    215 /opt/hostedtoolcache/Ruby/2.3.0/x64/lib/ruby/2.3.0/rubygems/resolver/stats.rb
    216 /opt/hostedtoolcache/Ruby/2.3.0/x64/lib/ruby/2.3.0/rubygems/resolver/set.rb
    217 /opt/hostedtoolcache/Ruby/2.3.0/x64/lib/ruby/2.3.0/rubygems/resolver/api_set.rb
    218 /opt/hostedtoolcache/Ruby/2.3.0/x64/lib/ruby/2.3.0/rubygems/resolver/composed_set.rb
    219 /opt/hostedtoolcache/Ruby/2.3.0/x64/lib/ruby/2.3.0/rubygems/resolver/best_set.rb
    220 /opt/hostedtoolcache/Ruby/2.3.0/x64/lib/ruby/2.3.0/rubygems/resolver/current_set.rb
    221 /opt/hostedtoolcache/Ruby/2.3.0/x64/lib/ruby/2.3.0/rubygems/resolver/git_set.rb
    222 /opt/hostedtoolcache/Ruby/2.3.0/x64/lib/ruby/2.3.0/rubygems/resolver/index_set.rb
    223 /opt/hostedtoolcache/Ruby/2.3.0/x64/lib/ruby/2.3.0/rubygems/resolver/installer_set.rb
    224 /opt/hostedtoolcache/Ruby/2.3.0/x64/lib/ruby/2.3.0/rubygems/resolver/lock_set.rb
    225 /opt/hostedtoolcache/Ruby/2.3.0/x64/lib/ruby/2.3.0/rubygems/resolver/vendor_set.rb
    226 /opt/hostedtoolcache/Ruby/2.3.0/x64/lib/ruby/2.3.0/rubygems/resolver/specification.rb
    227 /opt/hostedtoolcache/Ruby/2.3.0/x64/lib/ruby/2.3.0/rubygems/resolver/spec_specification.rb
    228 /opt/hostedtoolcache/Ruby/2.3.0/x64/lib/ruby/2.3.0/rubygems/resolver/api_specification.rb
    229 /opt/hostedtoolcache/Ruby/2.3.0/x64/lib/ruby/2.3.0/rubygems/resolver/git_specification.rb
    230 /opt/hostedtoolcache/Ruby/2.3.0/x64/lib/ruby/2.3.0/rubygems/resolver/index_specification.rb
    231 /opt/hostedtoolcache/Ruby/2.3.0/x64/lib/ruby/2.3.0/rubygems/resolver/installed_specification.rb
    232 /opt/hostedtoolcache/Ruby/2.3.0/x64/lib/ruby/2.3.0/rubygems/resolver/local_specification.rb
    233 /opt/hostedtoolcache/Ruby/2.3.0/x64/lib/ruby/2.3.0/rubygems/resolver/lock_specification.rb
    234 /opt/hostedtoolcache/Ruby/2.3.0/x64/lib/ruby/2.3.0/rubygems/resolver/vendor_specification.rb
    235 /opt/hostedtoolcache/Ruby/2.3.0/x64/lib/ruby/2.3.0/rubygems/resolver.rb
    236 /opt/hostedtoolcache/Ruby/2.3.0/x64/lib/ruby/2.3.0/rdoc.rb
    237 /opt/hostedtoolcache/Ruby/2.3.0/x64/lib/ruby/2.3.0/rdoc/rubygems_hook.rb
    238 /opt/hostedtoolcache/Ruby/2.3.0/x64/lib/ruby/2.3.0/rubygems/rdoc.rb
    239 /opt/hostedtoolcache/Ruby/2.3.0/x64/lib/ruby/2.3.0/rubygems/source_list.rb
    240 /opt/hostedtoolcache/Ruby/2.3.0/x64/lib/ruby/2.3.0/net/https.rb

  * Process memory map:

  55c68f09e000-55c68f09f000 r--p 00000000 08:11 3930866                    /opt/hostedtoolcache/Ruby/2.3.0/x64/bin/ruby
  55c68f09f000-55c68f0a0000 r-xp 00001000 08:11 3930866                    /opt/hostedtoolcache/Ruby/2.3.0/x64/bin/ruby
  55c68f0a0000-55c68f0a1000 r--p 00002000 08:11 3930866                    /opt/hostedtoolcache/Ruby/2.3.0/x64/bin/ruby
  55c68f0a1000-55c68f0a2000 r--p 00002000 08:11 3930866                    /opt/hostedtoolcache/Ruby/2.3.0/x64/bin/ruby
  55c68f0a2000-55c68f0a3000 rw-p 00003000 08:11 3930866                    /opt/hostedtoolcache/Ruby/2.3.0/x64/bin/ruby
  55c68fd1c000-55c69123b000 rw-p 00000000 00:00 0                          [heap]
  7feb0fc00000-7feb0fe1e000 r--s 00000000 08:11 5004                       /usr/lib/x86_64-linux-gnu/libc.so.6
  7feb10000000-7feb10021000 rw-p 00000000 00:00 0 
  7feb10021000-7feb14000000 ---p 00000000 00:00 0 
  7feb14200000-7feb14e06000 r--s 00000000 08:11 3947040                    /opt/hostedtoolcache/Ruby/2.3.0/x64/lib/libruby.so.2.3.0
  7feb14ea8000-7feb14f4c000 rw-p 00000000 00:00 0 
  7feb14f4c000-7feb15149000 rw-p 00000000 00:00 0 
  7feb151e9000-7feb152a2000 rw-p 00000000 00:00 0 
  7feb152d5000-7feb152ff000 r--s 00000000 08:11 3930866                    /opt/hostedtoolcache/Ruby/2.3.0/x64/bin/ruby
  7feb152ff000-7feb15300000 ---p 00000000 00:00 0 
  7feb15300000-7feb15400000 rw-p 00000000 00:00 0 
  7feb15400000-7feb15469000 r--p 00000000 08:11 3945820                    /opt/hostedtoolcache/Ruby/2.3.0/x64/openssl/lib/libcrypto.so.1.0.0
  7feb15469000-7feb155ac000 r-xp 00069000 08:11 3945820                    /opt/hostedtoolcache/Ruby/2.3.0/x64/openssl/lib/libcrypto.so.1.0.0
  7feb155ac000-7feb15634000 r--p 001ac000 08:11 3945820                    /opt/hostedtoolcache/Ruby/2.3.0/x64/openssl/lib/libcrypto.so.1.0.0
  7feb15634000-7feb15650000 r--p 00233000 08:11 3945820                    /opt/hostedtoolcache/Ruby/2.3.0/x64/openssl/lib/libcrypto.so.1.0.0
  7feb15650000-7feb1565c000 rw-p 0024f000 08:11 3945820                    /opt/hostedtoolcache/Ruby/2.3.0/x64/openssl/lib/libcrypto.so.1.0.0
  7feb1565c000-7feb1565f000 rw-p 00000000 00:00 0 
  7feb15676000-7feb15679000 r--p 00000000 08:11 5000                       /usr/lib/x86_64-linux-gnu/libgcc_s.so.1
  7feb15679000-7feb15690000 r-xp 00003000 08:11 5000                       /usr/lib/x86_64-linux-gnu/libgcc_s.so.1
  7feb15690000-7feb15694000 r--p 0001a000 08:11 5000                       /usr/lib/x86_64-linux-gnu/libgcc_s.so.1
  7feb15694000-7feb15695000 r--p 0001d000 08:11 5000                       /usr/lib/x86_64-linux-gnu/libgcc_s.so.1
  7feb15695000-7feb15696000 rw-p 0001e000 08:11 5000                       /usr/lib/x86_64-linux-gnu/libgcc_s.so.1
  7feb156a2000-7feb157a3000 rw-p 00000000 00:00 0 
  7feb157a3000-7feb157a9000 r--p 00000000 08:11 3946433                    /opt/hostedtoolcache/Ruby/2.3.0/x64/lib/ruby/2.3.0/x86_64-linux/socket.so
  7feb157a9000-7feb157c9000 r-xp 00006000 08:11 3946433                    /opt/hostedtoolcache/Ruby/2.3.0/x64/lib/ruby/2.3.0/x86_64-linux/socket.so
  7feb157c9000-7feb157d0000 r--p 00026000 08:11 3946433                    /opt/hostedtoolcache/Ruby/2.3.0/x64/lib/ruby/2.3.0/x86_64-linux/socket.so
  7feb157d0000-7feb157d1000 r--p 0002c000 08:11 3946433                    /opt/hostedtoolcache/Ruby/2.3.0/x64/lib/ruby/2.3.0/x86_64-linux/socket.so
  7feb157d1000-7feb157d2000 rw-p 0002d000 08:11 3946433                    /opt/hostedtoolcache/Ruby/2.3.0/x64/lib/ruby/2.3.0/x86_64-linux/socket.so
  7feb157d2000-7feb157d5000 r--p 00000000 08:11 3946445                    /opt/hostedtoolcache/Ruby/2.3.0/x64/lib/ruby/2.3.0/x86_64-linux/zlib.so
  7feb157d5000-7feb157df000 r-xp 00003000 08:11 3946445                    /opt/hostedtoolcache/Ruby/2.3.0/x64/lib/ruby/2.3.0/x86_64-linux/zlib.so
  7feb157df000-7feb157e2000 r--p 0000d000 08:11 3946445                    /opt/hostedtoolcache/Ruby/2.3.0/x64/lib/ruby/2.3.0/x86_64-linux/zlib.so
  7feb157e2000-7feb157e3000 r--p 0000f000 08:11 3946445                    /opt/hostedtoolcache/Ruby/2.3.0/x64/lib/ruby/2.3.0/x86_64-linux/zlib.so
  7feb157e3000-7feb157e4000 rw-p 00010000 08:11 3946445                    /opt/hostedtoolcache/Ruby/2.3.0/x64/lib/ruby/2.3.0/x86_64-linux/zlib.so
  7feb157e4000-7feb157e6000 r--p 00000000 08:11 4724                       /usr/lib/x86_64-linux-gnu/libz.so.1.2.11
  7feb157e6000-7feb157f7000 r-xp 00002000 08:11 4724                       /usr/lib/x86_64-linux-gnu/libz.so.1.2.11
  7feb157f7000-7feb157fd000 r--p 00013000 08:11 4724                       /usr/lib/x86_64-linux-gnu/libz.so.1.2.11
  7feb157fd000-7feb157fe000 ---p 00019000 08:11 4724                       /usr/lib/x86_64-linux-gnu/libz.so.1.2.11
  7feb157fe000-7feb157ff000 r--p 00019000 08:11 4724                       /usr/lib/x86_64-linux-gnu/libz.so.1.2.11
  7feb157ff000-7feb15800000 rw-p 0001a000 08:11 4724                       /usr/lib/x86_64-linux-gnu/libz.so.1.2.11
  7feb15800000-7feb15ae9000 r--p 00000000 08:11 6168                       /usr/lib/locale/locale-archive
  7feb15aef000-7feb15af0000 r--p 00000000 08:11 3946434                    /opt/hostedtoolcache/Ruby/2.3.0/x64/lib/ruby/2.3.0/x86_64-linux/cgi/escape.so
  7feb15af0000-7feb15af1000 r-xp 00001000 08:11 3946434                    /opt/hostedtoolcache/Ruby/2.3.0/x64/lib/ruby/2.3.0/x86_64-linux/cgi/escape.so
  7feb15af1000-7feb15af2000 r--p 00002000 08:11 3946434                    /opt/hostedtoolcache/Ruby/2.3.0/x64/lib/ruby/2.3.0/x86_64-linux/cgi/escape.so
  7feb15af2000-7feb15af3000 r--p 00002000 08:11 3946434                    /opt/hostedtoolcache/Ruby/2.3.0/x64/lib/ruby/2.3.0/x86_64-linux/cgi/escape.so
  7feb15af3000-7feb15af4000 rw-p 00003000 08:11 3946434                    /opt/hostedtoolcache/Ruby/2.3.0/x64/lib/ruby/2.3.0/x86_64-linux/cgi/escape.so
  7feb15af4000-7feb15b0d000 r--p 00000000 08:11 3945812                    /opt/hostedtoolcache/Ruby/2.3.0/x64/openssl/lib/libssl.so.1.0.0
  7feb15b0d000-7feb15b4d000 r-xp 00019000 08:11 3945812                    /opt/hostedtoolcache/Ruby/2.3.0/x64/openssl/lib/libssl.so.1.0.0
  7feb15b4d000-7feb15b5d000 r--p 00059000 08:11 3945812                    /opt/hostedtoolcache/Ruby/2.3.0/x64/openssl/lib/libssl.so.1.0.0
  7feb15b5d000-7feb15b5e000 ---p 00069000 08:11 3945812                    /opt/hostedtoolcache/Ruby/2.3.0/x64/openssl/lib/libssl.so.1.0.0
  7feb15b5e000-7feb15b62000 r--p 00069000 08:11 3945812                    /opt/hostedtoolcache/Ruby/2.3.0/x64/openssl/lib/libssl.so.1.0.0
  7feb15b62000-7feb15b69000 rw-p 0006d000 08:11 3945812                    /opt/hostedtoolcache/Ruby/2.3.0/x64/openssl/lib/libssl.so.1.0.0
  7feb15b69000-7feb15b7c000 r--p 00000000 08:11 3946372                    /opt/hostedtoolcache/Ruby/2.3.0/x64/lib/ruby/2.3.0/x86_64-linux/openssl.so
  7feb15b7c000-7feb15baf000 r-xp 00013000 08:11 3946372                    /opt/hostedtoolcache/Ruby/2.3.0/x64/lib/ruby/2.3.0/x86_64-linux/openssl.so
  7feb15baf000-7feb15bbe000 r--p 00046000 08:11 3946372                    /opt/hostedtoolcache/Ruby/2.3.0/x64/lib/ruby/2.3.0/x86_64-linux/openssl.so
  7feb15bbe000-7feb15bc0000 r--p 00054000 08:11 3946372                    /opt/hostedtoolcache/Ruby/2.3.0/x64/lib/ruby/2.3.0/x86_64-linux/openssl.so
  7feb15bc0000-7feb15bc2000 rw-p 00056000 08:11 3946372                    /opt/hostedtoolcache/Ruby/2.3.0/x64/lib/ruby/2.3.0/x86_64-linux/openssl.so
  7feb15bc2000-7feb15bc3000 rw-p 00000000 00:00 0 
  7feb15bc3000-7feb15bc8000 r--p 00000000 08:11 3946452                    /opt/hostedtoolcache/Ruby/2.3.0/x64/lib/ruby/2.3.0/x86_64-linux/date_core.so
  7feb15bc8000-7feb15bf6000 r-xp 00005000 08:11 3946452                    /opt/hostedtoolcache/Ruby/2.3.0/x64/lib/ruby/2.3.0/x86_64-linux/date_core.so
  7feb15bf6000-7feb15bfc000 r--p 00033000 08:11 3946452                    /opt/hostedtoolcache/Ruby/2.3.0/x64/lib/ruby/2.3.0/x86_64-linux/date_core.so
  7feb15bfc000-7feb15bfd000 ---p 00039000 08:11 3946452                    /opt/hostedtoolcache/Ruby/2.3.0/x64/lib/ruby/2.3.0/x86_64-linux/date_core.so
  7feb15bfd000-7feb15bfe000 r--p 00039000 08:11 3946452                    /opt/hostedtoolcache/Ruby/2.3.0/x64/lib/ruby/2.3.0/x86_64-linux/date_core.so
  7feb15bfe000-7feb15bff000 rw-p 0003a000 08:11 3946452                    /opt/hostedtoolcache/Ruby/2.3.0/x64/lib/ruby/2.3.0/x86_64-linux/date_core.so
  7feb15bff000-7feb15c00000 rw-p 00000000 00:00 0 
  7feb15c00000-7feb15c28000 r--p 00000000 08:11 5004                       /usr/lib/x86_64-linux-gnu/libc.so.6
  7feb15c28000-7feb15dbd000 r-xp 00028000 08:11 5004                       /usr/lib/x86_64-linux-gnu/libc.so.6
  7feb15dbd000-7feb15e15000 r--p 001bd000 08:11 5004                       /usr/lib/x86_64-linux-gnu/libc.so.6
  7feb15e15000-7feb15e19000 r--p 00214000 08:11 5004                       /usr/lib/x86_64-linux-gnu/libc.so.6
  7feb15e19000-7feb15e1b000 rw-p 00218000 08:11 5004                       /usr/lib/x86_64-linux-gnu/libc.so.6
  7feb15e1b000-7feb15e28000 rw-p 00000000 00:00 0 
  7feb15e2a000-7feb15e2b000 r--p 00000000 08:11 3946403                    /opt/hostedtoolcache/Ruby/2.3.0/x64/lib/ruby/2.3.0/x86_64-linux/enc/windows_31j.so
  7feb15e2b000-7feb15e2c000 r-xp 00001000 08:11 3946403                    /opt/hostedtoolcache/Ruby/2.3.0/x64/lib/ruby/2.3.0/x86_64-linux/enc/windows_31j.so
  7feb15e2c000-7feb15e2d000 r--p 00002000 08:11 3946403                    /opt/hostedtoolcache/Ruby/2.3.0/x64/lib/ruby/2.3.0/x86_64-linux/enc/windows_31j.so
  7feb15e2d000-7feb15e2e000 ---p 00003000 08:11 3946403                    /opt/hostedtoolcache/Ruby/2.3.0/x64/lib/ruby/2.3.0/x86_64-linux/enc/windows_31j.so
  7feb15e2e000-7feb15e2f000 r--p 00003000 08:11 3946403                    /opt/hostedtoolcache/Ruby/2.3.0/x64/lib/ruby/2.3.0/x86_64-linux/enc/windows_31j.so
  7feb15e2f000-7feb15e30000 rw-p 00004000 08:11 3946403                    /opt/hostedtoolcache/Ruby/2.3.0/x64/lib/ruby/2.3.0/x86_64-linux/enc/windows_31j.so
  7feb15e30000-7feb15e31000 r--p 00000000 08:11 3946447                    /opt/hostedtoolcache/Ruby/2.3.0/x64/lib/ruby/2.3.0/x86_64-linux/io/wait.so
  7feb15e31000-7feb15e32000 r-xp 00001000 08:11 3946447                    /opt/hostedtoolcache/Ruby/2.3.0/x64/lib/ruby/2.3.0/x86_64-linux/io/wait.so
  7feb15e32000-7feb15e33000 r--p 00002000 08:11 3946447                    /opt/hostedtoolcache/Ruby/2.3.0/x64/lib/ruby/2.3.0/x86_64-linux/io/wait.so
  7feb15e33000-7feb15e34000 r--p 00002000 08:11 3946447                    /opt/hostedtoolcache/Ruby/2.3.0/x64/lib/ruby/2.3.0/x86_64-linux/io/wait.so
  7feb15e34000-7feb15e35000 rw-p 00003000 08:11 3946447                    /opt/hostedtoolcache/Ruby/2.3.0/x64/lib/ruby/2.3.0/x86_64-linux/io/wait.so
  7feb15e35000-7feb15e36000 r--p 00000000 08:11 3946446                    /opt/hostedtoolcache/Ruby/2.3.0/x64/lib/ruby/2.3.0/x86_64-linux/io/nonblock.so
  7feb15e36000-7feb15e37000 r-xp 00001000 08:11 3946446                    /opt/hostedtoolcache/Ruby/2.3.0/x64/lib/ruby/2.3.0/x86_64-linux/io/nonblock.so
  7feb15e37000-7feb15e38000 r--p 00002000 08:11 3946446                    /opt/hostedtoolcache/Ruby/2.3.0/x64/lib/ruby/2.3.0/x86_64-linux/io/nonblock.so
  7feb15e38000-7feb15e39000 r--p 00002000 08:11 3946446                    /opt/hostedtoolcache/Ruby/2.3.0/x64/lib/ruby/2.3.0/x86_64-linux/io/nonblock.so
  7feb15e39000-7feb15e3a000 rw-p 00003000 08:11 3946446                    /opt/hostedtoolcache/Ruby/2.3.0/x64/lib/ruby/2.3.0/x86_64-linux/io/nonblock.so
  7feb15e3a000-7feb15e3c000 r--p 00000000 08:11 3946457                    /opt/hostedtoolcache/Ruby/2.3.0/x64/lib/ruby/2.3.0/x86_64-linux/digest.so
  7feb15e3c000-7feb15e3e000 r-xp 00002000 08:11 3946457                    /opt/hostedtoolcache/Ruby/2.3.0/x64/lib/ruby/2.3.0/x86_64-linux/digest.so
  7feb15e3e000-7feb15e3f000 r--p 00004000 08:11 3946457                    /opt/hostedtoolcache/Ruby/2.3.0/x64/lib/ruby/2.3.0/x86_64-linux/digest.so
  7feb15e3f000-7feb15e40000 r--p 00004000 08:11 3946457                    /opt/hostedtoolcache/Ruby/2.3.0/x64/lib/ruby/2.3.0/x86_64-linux/digest.so
  7feb15e40000-7feb15e41000 rw-p 00005000 08:11 3946457                    /opt/hostedtoolcache/Ruby/2.3.0/x64/lib/ruby/2.3.0/x86_64-linux/digest.so
  7feb15e41000-7feb15e42000 r--p 00000000 08:11 3946386                    /opt/hostedtoolcache/Ruby/2.3.0/x64/lib/ruby/2.3.0/x86_64-linux/enc/utf_16be.so
  7feb15e42000-7feb15e43000 r-xp 00001000 08:11 3946386                    /opt/hostedtoolcache/Ruby/2.3.0/x64/lib/ruby/2.3.0/x86_64-linux/enc/utf_16be.so
  7feb15e43000-7feb15e44000 r--p 00002000 08:11 3946386                    /opt/hostedtoolcache/Ruby/2.3.0/x64/lib/ruby/2.3.0/x86_64-linux/enc/utf_16be.so
  7feb15e44000-7feb15e45000 r--p 00002000 08:11 3946386                    /opt/hostedtoolcache/Ruby/2.3.0/x64/lib/ruby/2.3.0/x86_64-linux/enc/utf_16be.so
  7feb15e45000-7feb15e46000 rw-p 00003000 08:11 3946386                    /opt/hostedtoolcache/Ruby/2.3.0/x64/lib/ruby/2.3.0/x86_64-linux/enc/utf_16be.so
  7feb15e46000-7feb15e47000 r--p 00000000 08:11 3946375                    /opt/hostedtoolcache/Ruby/2.3.0/x64/lib/ruby/2.3.0/x86_64-linux/enc/utf_16le.so
  7feb15e47000-7feb15e48000 r-xp 00001000 08:11 3946375                    /opt/hostedtoolcache/Ruby/2.3.0/x64/lib/ruby/2.3.0/x86_64-linux/enc/utf_16le.so
  7feb15e48000-7feb15e49000 r--p 00002000 08:11 3946375                    /opt/hostedtoolcache/Ruby/2.3.0/x64/lib/ruby/2.3.0/x86_64-linux/enc/utf_16le.so
  7feb15e49000-7feb15e4a000 r--p 00002000 08:11 3946375                    /opt/hostedtoolcache/Ruby/2.3.0/x64/lib/ruby/2.3.0/x86_64-linux/enc/utf_16le.so
  7feb15e4a000-7feb15e4b000 rw-p 00003000 08:11 3946375                    /opt/hostedtoolcache/Ruby/2.3.0/x64/lib/ruby/2.3.0/x86_64-linux/enc/utf_16le.so
  7feb15e4b000-7feb15e4d000 r--p 00000000 08:11 4894                       /usr/lib/x86_64-linux-gnu/libyaml-0.so.2.0.6
  7feb15e4d000-7feb15e66000 r-xp 00002000 08:11 4894                       /usr/lib/x86_64-linux-gnu/libyaml-0.so.2.0.6
  7feb15e66000-7feb15e6a000 r--p 0001b000 08:11 4894                       /usr/lib/x86_64-linux-gnu/libyaml-0.so.2.0.6
  7feb15e6a000-7feb15e6b000 r--p 0001e000 08:11 4894                       /usr/lib/x86_64-linux-gnu/libyaml-0.so.2.0.6
  7feb15e6b000-7feb15e6c000 rw-p 0001f000 08:11 4894                       /usr/lib/x86_64-linux-gnu/libyaml-0.so.2.0.6
  7feb15e6e000-7feb15e70000 r--p 00000000 08:11 3946438                    /opt/hostedtoolcache/Ruby/2.3.0/x64/lib/ruby/2.3.0/x86_64-linux/strscan.so
  7feb15e70000-7feb15e74000 r-xp 00002000 08:11 3946438                    /opt/hostedtoolcache/Ruby/2.3.0/x64/lib/ruby/2.3.0/x86_64-linux/strscan.so
  7feb15e74000-7feb15e75000 r--p 00006000 08:11 3946438                    /opt/hostedtoolcache/Ruby/2.3.0/x64/lib/ruby/2.3.0/x86_64-linux/strscan.so
  7feb15e75000-7feb15e76000 ---p 00007000 08:11 3946438                    /opt/hostedtoolcache/Ruby/2.3.0/x64/lib/ruby/2.3.0/x86_64-linux/strscan.so
  7feb15e76000-7feb15e77000 r--p 00007000 08:11 3946438                    /opt/hostedtoolcache/Ruby/2.3.0/x64/lib/ruby/2.3.0/x86_64-linux/strscan.so
  7feb15e77000-7feb15e78000 rw-p 00008000 08:11 3946438                    /opt/hostedtoolcache/Ruby/2.3.0/x64/lib/ruby/2.3.0/x86_64-linux/strscan.so
  7feb15e78000-7feb15e7b000 r--p 00000000 08:11 3946431                    /opt/hostedtoolcache/Ruby/2.3.0/x64/lib/ruby/2.3.0/x86_64-linux/psych.so
  7feb15e7b000-7feb15e7f000 r-xp 00003000 08:11 3946431                    /opt/hostedtoolcache/Ruby/2.3.0/x64/lib/ruby/2.3.0/x86_64-linux/psych.so
  7feb15e7f000-7feb15e80000 r--p 00007000 08:11 3946431                    /opt/hostedtoolcache/Ruby/2.3.0/x64/lib/ruby/2.3.0/x86_64-linux/psych.so
  7feb15e80000-7feb15e81000 r--p 00007000 08:11 3946431                    /opt/hostedtoolcache/Ruby/2.3.0/x64/lib/ruby/2.3.0/x86_64-linux/psych.so
  7feb15e81000-7feb15e82000 rw-p 00008000 08:11 3946431                    /opt/hostedtoolcache/Ruby/2.3.0/x64/lib/ruby/2.3.0/x86_64-linux/psych.so
  7feb15e82000-7feb15e84000 r--p 00000000 08:11 3946458                    /opt/hostedtoolcache/Ruby/2.3.0/x64/lib/ruby/2.3.0/x86_64-linux/etc.so
  7feb15e84000-7feb15e87000 r-xp 00002000 08:11 3946458                    /opt/hostedtoolcache/Ruby/2.3.0/x64/lib/ruby/2.3.0/x86_64-linux/etc.so
  7feb15e87000-7feb15e89000 r--p 00005000 08:11 3946458                    /opt/hostedtoolcache/Ruby/2.3.0/x64/lib/ruby/2.3.0/x86_64-linux/etc.so
  7feb15e89000-7feb15e8a000 r--p 00006000 08:11 3946458                    /opt/hostedtoolcache/Ruby/2.3.0/x64/lib/ruby/2.3.0/x86_64-linux/etc.so
  7feb15e8a000-7feb15e8b000 rw-p 00007000 08:11 3946458                    /opt/hostedtoolcache/Ruby/2.3.0/x64/lib/ruby/2.3.0/x86_64-linux/etc.so
  7feb15e8b000-7feb15e8d000 r--p 00000000 08:11 3946448                    /opt/hostedtoolcache/Ruby/2.3.0/x64/lib/ruby/2.3.0/x86_64-linux/io/console.so
  7feb15e8d000-7feb15e90000 r-xp 00002000 08:11 3946448                    /opt/hostedtoolcache/Ruby/2.3.0/x64/lib/ruby/2.3.0/x86_64-linux/io/console.so
  7feb15e90000-7feb15e91000 r--p 00005000 08:11 3946448                    /opt/hostedtoolcache/Ruby/2.3.0/x64/lib/ruby/2.3.0/x86_64-linux/io/console.so
  7feb15e91000-7feb15e92000 r--p 00005000 08:11 3946448                    /opt/hostedtoolcache/Ruby/2.3.0/x64/lib/ruby/2.3.0/x86_64-linux/io/console.so
  7feb15e92000-7feb15e93000 rw-p 00006000 08:11 3946448                    /opt/hostedtoolcache/Ruby/2.3.0/x64/lib/ruby/2.3.0/x86_64-linux/io/console.so
  7feb15e93000-7feb15e95000 r--p 00000000 08:11 3946439                    /opt/hostedtoolcache/Ruby/2.3.0/x64/lib/ruby/2.3.0/x86_64-linux/stringio.so
  7feb15e95000-7feb15e9a000 r-xp 00002000 08:11 3946439                    /opt/hostedtoolcache/Ruby/2.3.0/x64/lib/ruby/2.3.0/x86_64-linux/stringio.so
  7feb15e9a000-7feb15e9c000 r--p 00007000 08:11 3946439                    /opt/hostedtoolcache/Ruby/2.3.0/x64/lib/ruby/2.3.0/x86_64-linux/stringio.so
  7feb15e9c000-7feb15e9d000 r--p 00008000 08:11 3946439                    /opt/hostedtoolcache/Ruby/2.3.0/x64/lib/ruby/2.3.0/x86_64-linux/stringio.so
  7feb15e9d000-7feb15e9e000 rw-p 00009000 08:11 3946439                    /opt/hostedtoolcache/Ruby/2.3.0/x64/lib/ruby/2.3.0/x86_64-linux/stringio.so
  7feb15e9e000-7feb15e9f000 r--p 00000000 08:11 3946418                    /opt/hostedtoolcache/Ruby/2.3.0/x64/lib/ruby/2.3.0/x86_64-linux/enc/trans/transdb.so
  7feb15e9f000-7feb15ea0000 r-xp 00001000 08:11 3946418                    /opt/hostedtoolcache/Ruby/2.3.0/x64/lib/ruby/2.3.0/x86_64-linux/enc/trans/transdb.so
  7feb15ea0000-7feb15ea1000 r--p 00002000 08:11 3946418                    /opt/hostedtoolcache/Ruby/2.3.0/x64/lib/ruby/2.3.0/x86_64-linux/enc/trans/transdb.so
  7feb15ea1000-7feb15ea2000 r--p 00002000 08:11 3946418                    /opt/hostedtoolcache/Ruby/2.3.0/x64/lib/ruby/2.3.0/x86_64-linux/enc/trans/transdb.so
  7feb15ea2000-7feb15ea3000 rw-p 00003000 08:11 3946418                    /opt/hostedtoolcache/Ruby/2.3.0/x64/lib/ruby/2.3.0/x86_64-linux/enc/trans/transdb.so
  7feb15ea3000-7feb15ea4000 r--p 00000000 08:11 3946382                    /opt/hostedtoolcache/Ruby/2.3.0/x64/lib/ruby/2.3.0/x86_64-linux/enc/encdb.so
  7feb15ea4000-7feb15ea5000 r-xp 00001000 08:11 3946382                    /opt/hostedtoolcache/Ruby/2.3.0/x64/lib/ruby/2.3.0/x86_64-linux/enc/encdb.so
  7feb15ea5000-7feb15ea6000 r--p 00002000 08:11 3946382                    /opt/hostedtoolcache/Ruby/2.3.0/x64/lib/ruby/2.3.0/x86_64-linux/enc/encdb.so
  7feb15ea6000-7feb15ea7000 r--p 00002000 08:11 3946382                    /opt/hostedtoolcache/Ruby/2.3.0/x64/lib/ruby/2.3.0/x86_64-linux/enc/encdb.so
  7feb15ea7000-7feb15ea8000 rw-p 00003000 08:11 3946382                    /opt/hostedtoolcache/Ruby/2.3.0/x64/lib/ruby/2.3.0/x86_64-linux/enc/encdb.so
  7feb15ea8000-7feb15fa9000 rw-p 00000000 00:00 0 
  7feb15fa9000-7feb16000000 r--p 00000000 08:11 6159                       /usr/lib/locale/C.utf8/LC_CTYPE
  7feb16000000-7feb16029000 r--p 00000000 08:11 3947040                    /opt/hostedtoolcache/Ruby/2.3.0/x64/lib/libruby.so.2.3.0
  7feb16029000-7feb16200000 r-xp 00029000 08:11 3947040                    /opt/hostedtoolcache/Ruby/2.3.0/x64/lib/libruby.so.2.3.0
  7feb16200000-7feb162c7000 r--p 00200000 08:11 3947040                    /opt/hostedtoolcache/Ruby/2.3.0/x64/lib/libruby.so.2.3.0
  7feb162c7000-7feb162cd000 r--p 002c6000 08:11 3947040                    /opt/hostedtoolcache/Ruby/2.3.0/x64/lib/libruby.so.2.3.0
  7feb162cd000-7feb162d0000 rw-p 002cc000 08:11 3947040                    /opt/hostedtoolcache/Ruby/2.3.0/x64/lib/libruby.so.2.3.0
  7feb162d0000-7feb162e1000 rw-p 00000000 00:00 0 
  7feb162e4000-7feb162e9000 rw-p 00000000 00:00 0 
  7feb162e9000-7feb162f7000 r--p 00000000 08:11 5007                       /usr/lib/x86_64-linux-gnu/libm.so.6
  7feb162f7000-7feb16373000 r-xp 0000e000 08:11 5007                       /usr/lib/x86_64-linux-gnu/libm.so.6
  7feb16373000-7feb163ce000 r--p 0008a000 08:11 5007                       /usr/lib/x86_64-linux-gnu/libm.so.6
  7feb163ce000-7feb163cf000 r--p 000e4000 08:11 5007                       /usr/lib/x86_64-linux-gnu/libm.so.6
  7feb163cf000-7feb163d0000 rw-p 000e5000 08:11 5007                       /usr/lib/x86_64-linux-gnu/libm.so.6
  7feb163d0000-7feb163d2000 r--p 00000000 08:11 3603                       /usr/lib/x86_64-linux-gnu/libcrypt.so.1.1.0
  7feb163d2000-7feb163e6000 r-xp 00002000 08:11 3603                       /usr/lib/x86_64-linux-gnu/libcrypt.so.1.1.0
  7feb163e6000-7feb163ff000 r--p 00016000 08:11 3603                       /usr/lib/x86_64-linux-gnu/libcrypt.so.1.1.0
  7feb163ff000-7feb16400000 ---p 0002f000 08:11 3603                       /usr/lib/x86_64-linux-gnu/libcrypt.so.1.1.0
  7feb16400000-7feb16401000 r--p 0002f000 08:11 3603                       /usr/lib/x86_64-linux-gnu/libcrypt.so.1.1.0
  7feb16401000-7feb16402000 rw-p 00030000 08:11 3603                       /usr/lib/x86_64-linux-gnu/libcrypt.so.1.1.0
  7feb16402000-7feb1640a000 rw-p 00000000 00:00 0 
  7feb1640a000-7feb16414000 r--p 00000000 08:11 3610                       /usr/lib/x86_64-linux-gnu/libgmp.so.10.4.1
  7feb16414000-7feb16473000 r-xp 0000a000 08:11 3610                       /usr/lib/x86_64-linux-gnu/libgmp.so.10.4.1
  7feb16473000-7feb1648a000 r--p 00069000 08:11 3610                       /usr/lib/x86_64-linux-gnu/libgmp.so.10.4.1
  7feb1648a000-7feb1648b000 r--p 0007f000 08:11 3610                       /usr/lib/x86_64-linux-gnu/libgmp.so.10.4.1
  7feb1648b000-7feb1648c000 rw-p 00080000 08:11 3610                       /usr/lib/x86_64-linux-gnu/libgmp.so.10.4.1
  7feb1648c000-7feb1648d000 ---p 00000000 00:00 0 
  7feb1648d000-7feb16491000 rw-p 00000000 00:00 0 
  7feb16491000-7feb16498000 r--s 00000000 08:11 3878                       /usr/lib/x86_64-linux-gnu/gconv/gconv-modules.cache
  7feb16498000-7feb1649a000 rw-p 00000000 00:00 0 
  7feb1649a000-7feb1649c000 r--p 00000000 08:11 4998                       /usr/lib/x86_64-linux-gnu/ld-linux-x86-64.so.2
  7feb1649c000-7feb164c6000 r-xp 00002000 08:11 4998                       /usr/lib/x86_64-linux-gnu/ld-linux-x86-64.so.2
  7feb164c6000-7feb164d1000 r--p 0002c000 08:11 4998                       /usr/lib/x86_64-linux-gnu/ld-linux-x86-64.so.2
  7feb164d2000-7feb164d4000 r--p 00037000 08:11 4998                       /usr/lib/x86_64-linux-gnu/ld-linux-x86-64.so.2
  7feb164d4000-7feb164d6000 rw-p 00039000 08:11 4998                       /usr/lib/x86_64-linux-gnu/ld-linux-x86-64.so.2
  7ffca3c51000-7ffca4c50000 rw-p 00000000 00:00 0                          [stack]
  7ffca4ca0000-7ffca4ca4000 r--p 00000000 00:00 0                          [vvar]
  7ffca4ca4000-7ffca4ca6000 r-xp 00000000 00:00 0                          [vdso]
  ffffffffff600000-ffffffffff601000 --xp 00000000 00:00 0                  [vsyscall]

  [NOTE]
  You may have encountered a bug in the Ruby interpreter or extension libraries.
  Bug reports are welcome.
  For details: http://www.ruby-lang.org/bugreport.html

  Took   1.80 seconds
Error: The process '/opt/hostedtoolcache/Ruby/2.3.0/x64/bin/gem' failed with exit code null
mountriv99 commented 10 months ago

problem went away after upgrading ruby to 2.7.8, closing