From 127a84d18acea5c1c0653ff36b5c801079c74f20 Mon Sep 17 00:00:00 2001 From: tomoya ishida Date: Wed, 12 Apr 2023 23:38:13 +0900 Subject: [PATCH] Remove irb from test dependeicy and from test matrix (#533) * Remove irb from test dependency Reline's test no longer depends on irb. github:ruby/irb requires ruby >= 2.7 but reline's test is run in >= 2.6 * Remove test matrix using github.com/ruby/irb because reline's test doesn't depend on irb anymore --- .github/workflows/reline.yml | 31 ------------------------------- Gemfile | 1 - 2 files changed, 32 deletions(-) diff --git a/.github/workflows/reline.yml b/.github/workflows/reline.yml index 22dc6bd2e2..497dfe03ce 100644 --- a/.github/workflows/reline.yml +++ b/.github/workflows/reline.yml @@ -55,37 +55,6 @@ jobs: TERM: xterm-256color run: bundle exec rake ci-test - irb: - name: >- - irb ${{ matrix.ruby }} ${{ matrix.os }} - runs-on: ${{ matrix.os }} - strategy: - matrix: - ruby: [ head ] - os: [ ubuntu-latest ] - timeout-minutes: 30 - steps: - - uses: actions/checkout@v3 - - name: Set up Ruby - uses: ruby/setup-ruby@v1 - with: - ruby-version: ${{ matrix.ruby }} - - name: Install dependencies - run: bundle install - - name: Install reline - run: | - rake build - rake install - - name: Download ruby/irb - run: | - git clone https://github.com/ruby/irb - - name: Setup ruby/irb - run: | - cd irb - bundle install - - name: Run irb test - run: bundle exec rake test - vterm-yamatanooroti: name: >- vterm-yamatanooroti ${{ matrix.os }} ${{ matrix.ruby }} diff --git a/Gemfile b/Gemfile index efe6daa807..3437461e23 100644 --- a/Gemfile +++ b/Gemfile @@ -12,4 +12,3 @@ end gem 'bundler' gem 'rake' gem 'test-unit' -gem 'irb', github: "ruby/irb"