-
Notifications
You must be signed in to change notification settings - Fork 116
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
3 changed files
with
347 additions
and
194 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,213 @@ | ||
# DO NOT EDIT | ||
# This is a generated file by the `rake build_matrix:github:generate` task. | ||
# See `build_matrix.yml` for the build matrix. | ||
# Generate this file with `rake build_matrix:github:generate`. | ||
--- | ||
name: Ruby gem CI | ||
'on': | ||
push: | ||
branches: | ||
- main | ||
- develop | ||
- github-actions | ||
pull_request: | ||
types: | ||
- opened | ||
- reopened | ||
- synchronize | ||
jobs: | ||
lint-git: | ||
name: Git linter (Lintje) | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v4 | ||
with: | ||
fetch-depth: 0 | ||
- name: Run Git linter | ||
uses: lintje/[email protected] | ||
lint-style: | ||
name: Ruby style linter (RuboCop) | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- uses: ruby/setup-ruby@v1 | ||
with: | ||
ruby-version: '3.3' | ||
bundler-cache: true | ||
- name: Run RuboCop | ||
run: bundle exec rubocop | ||
validation: | ||
name: Validation of CI | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- uses: ruby/setup-ruby@v1 | ||
with: | ||
ruby-version: '3.3' | ||
bundler-cache: true | ||
- run: rake build_matrix:github:validate | ||
integration_tests: | ||
name: Diagnose integration tests | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v4 | ||
with: | ||
submodules: true | ||
- uses: ruby/setup-ruby@v1 | ||
with: | ||
ruby-version: '3.3' | ||
bundler-cache: true | ||
- name: Run diagnose integration tests | ||
run: spec/integration/diagnose/bin/test | ||
env: | ||
LANGUAGE: ruby | ||
ruby_2-7-8: | ||
name: Ruby 2.7.8 | ||
needs: validation | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Check out repository | ||
uses: actions/checkout@v4 | ||
- name: Install Ruby | ||
uses: ruby/setup-ruby@v1 | ||
with: | ||
ruby-version: 2.7.8 | ||
bundler-cache: true | ||
- name: Install gem extension | ||
run: "./support/bundler_wrapper exec rake extension:install" | ||
- name: Print extension install report | ||
run: "[ -e ext/install.report ] && cat ext/install.report || echo 'No ext/install.report | ||
file found'" | ||
- name: Print Makefile log file | ||
run: "[ -f ext/mkmf.log ] && cat ext/mkmf.log || echo 'No ext/mkmf.log file | ||
found'" | ||
- name: Run tests for no_dependencies | ||
env: {} | ||
run: "./support/bundler_wrapper exec rake test" | ||
- name: Run tests without extension | ||
run: "./support/bundler_wrapper exec rake test:failure" | ||
ruby_3-0-5: | ||
name: Ruby 3.0.5 | ||
needs: validation | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Check out repository | ||
uses: actions/checkout@v4 | ||
- name: Install Ruby | ||
uses: ruby/setup-ruby@v1 | ||
with: | ||
ruby-version: 3.0.5 | ||
bundler-cache: true | ||
- name: Install gem extension | ||
run: "./support/bundler_wrapper exec rake extension:install" | ||
- name: Print extension install report | ||
run: "[ -e ext/install.report ] && cat ext/install.report || echo 'No ext/install.report | ||
file found'" | ||
- name: Print Makefile log file | ||
run: "[ -f ext/mkmf.log ] && cat ext/mkmf.log || echo 'No ext/mkmf.log file | ||
found'" | ||
- name: Run tests for no_dependencies | ||
env: {} | ||
run: "./support/bundler_wrapper exec rake test" | ||
- name: Run tests without extension | ||
run: "./support/bundler_wrapper exec rake test:failure" | ||
ruby_3-1-3: | ||
name: Ruby 3.1.3 | ||
needs: validation | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Check out repository | ||
uses: actions/checkout@v4 | ||
- name: Install Ruby | ||
uses: ruby/setup-ruby@v1 | ||
with: | ||
ruby-version: 3.1.3 | ||
bundler-cache: true | ||
- name: Install gem extension | ||
run: "./support/bundler_wrapper exec rake extension:install" | ||
- name: Print extension install report | ||
run: "[ -e ext/install.report ] && cat ext/install.report || echo 'No ext/install.report | ||
file found'" | ||
- name: Print Makefile log file | ||
run: "[ -f ext/mkmf.log ] && cat ext/mkmf.log || echo 'No ext/mkmf.log file | ||
found'" | ||
- name: Run tests for no_dependencies | ||
env: {} | ||
run: "./support/bundler_wrapper exec rake test" | ||
- name: Run tests without extension | ||
run: "./support/bundler_wrapper exec rake test:failure" | ||
ruby_3-2-1: | ||
name: Ruby 3.2.1 | ||
needs: validation | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Check out repository | ||
uses: actions/checkout@v4 | ||
- name: Install Ruby | ||
uses: ruby/setup-ruby@v1 | ||
with: | ||
ruby-version: 3.2.1 | ||
bundler-cache: true | ||
- name: Install gem extension | ||
run: "./support/bundler_wrapper exec rake extension:install" | ||
- name: Print extension install report | ||
run: "[ -e ext/install.report ] && cat ext/install.report || echo 'No ext/install.report | ||
file found'" | ||
- name: Print Makefile log file | ||
run: "[ -f ext/mkmf.log ] && cat ext/mkmf.log || echo 'No ext/mkmf.log file | ||
found'" | ||
- name: Run tests for no_dependencies | ||
env: {} | ||
run: "./support/bundler_wrapper exec rake test" | ||
- name: Run tests without extension | ||
run: "./support/bundler_wrapper exec rake test:failure" | ||
ruby_3-3-1: | ||
name: Ruby 3.3.1 | ||
needs: validation | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Check out repository | ||
uses: actions/checkout@v4 | ||
- name: Install Ruby | ||
uses: ruby/setup-ruby@v1 | ||
with: | ||
ruby-version: 3.3.1 | ||
bundler-cache: true | ||
- name: Install gem extension | ||
run: "./support/bundler_wrapper exec rake extension:install" | ||
- name: Print extension install report | ||
run: "[ -e ext/install.report ] && cat ext/install.report || echo 'No ext/install.report | ||
file found'" | ||
- name: Print Makefile log file | ||
run: "[ -f ext/mkmf.log ] && cat ext/mkmf.log || echo 'No ext/mkmf.log file | ||
found'" | ||
- name: Run tests for no_dependencies | ||
env: {} | ||
run: "./support/bundler_wrapper exec rake test" | ||
- name: Run tests without extension | ||
run: "./support/bundler_wrapper exec rake test:failure" | ||
ruby_jruby-9-4-1-0: | ||
name: Ruby jruby-9.4.1.0 | ||
needs: validation | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Check out repository | ||
uses: actions/checkout@v4 | ||
- name: Install Ruby | ||
uses: ruby/setup-ruby@v1 | ||
with: | ||
ruby-version: jruby-9.4.1.0 | ||
bundler-cache: true | ||
- name: Install gem extension | ||
run: "./support/bundler_wrapper exec rake extension:install" | ||
- name: Print extension install report | ||
run: "[ -e ext/install.report ] && cat ext/install.report || echo 'No ext/install.report | ||
file found'" | ||
- name: Print Makefile log file | ||
run: "[ -f ext/mkmf.log ] && cat ext/mkmf.log || echo 'No ext/mkmf.log file | ||
found'" | ||
- name: Run tests for no_dependencies | ||
env: {} | ||
run: "./support/bundler_wrapper exec rake test" | ||
- name: Run tests without extension | ||
run: "./support/bundler_wrapper exec rake test:failure" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.