Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Run old rubies with Ubuntu 20 in CI #221

Merged
merged 2 commits into from
Oct 10, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
28 changes: 25 additions & 3 deletions .github/workflows/benchmarks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,9 @@ jobs:

strategy:
matrix:
ruby-version: ['3.1', '3.0', '2.7', '2.5.1', '2.4.3', '2.3.0',
'2.1.9', '2.2.10', 'ruby-head', 'jruby-9.1.17.0',
'jruby-head', 'truffleruby-22.3.0', 'truffleruby-head']
ruby-version: ['3.1', '3.0', '2.7', '2.5.1', '2.4.3', 'ruby-head',
'jruby-9.1.17.0', 'jruby-head', 'truffleruby-22.3.0',
'truffleruby-head']

steps:
- name: Set Share Env
Expand All @@ -30,3 +30,25 @@ jobs:
run: bundle install
- name: Run benchmarks
run: bundle exec rake

rake_old:
runs-on: ubuntu-20.04

strategy:
matrix:
ruby-version: ['2.3.0', '2.1.9', '2.2.10']

steps:
- name: Set Share Env
if: github.ref_name == 'main'
run: |
echo "SHARE=1" >> $GITHUB_ENV
- uses: actions/checkout@v3
- name: Set up Ruby ${{ matrix.ruby-version }}
uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby-version }}
- name: Install dependencies
run: bundle install
- name: Run benchmarks
run: bundle exec rake