-
Notifications
You must be signed in to change notification settings - Fork 45
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'rails:main' into exec-array
- Loading branch information
Showing
18 changed files
with
1,232 additions
and
48 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,52 @@ | ||
name: CI | ||
on: [push, pull_request] | ||
jobs: | ||
tests: | ||
strategy: | ||
fail-fast: false | ||
matrix: | ||
ruby-version: | ||
- "3.0" | ||
- "3.1" | ||
- "3.2" | ||
gemfile: | ||
- Gemfile | ||
- gemfiles/rails_7_0_propshaft.gemfile | ||
- gemfiles/rails_7_1_propshaft.gemfile | ||
- gemfiles/rails_main_propshaft.gemfile | ||
- gemfiles/rails_7_0_sprockets.gemfile | ||
- gemfiles/rails_7_1_sprockets.gemfile | ||
- gemfiles/rails_main_sprockets.gemfile | ||
continue-on-error: [ false ] | ||
|
||
name: ${{ format('Tests (Ruby {0}, {1})', matrix.ruby-version, matrix.gemfile) }} | ||
runs-on: ubuntu-latest | ||
continue-on-error: ${{ matrix.continue-on-error }} | ||
|
||
env: | ||
BUNDLE_GEMFILE: ${{ matrix.gemfile }} | ||
|
||
steps: | ||
- uses: actions/checkout@v4 | ||
|
||
- name: Remove Gemfile lock | ||
run: | | ||
rm -f $BUNDLE_GEMFILE.lock | ||
- name: Install Ruby | ||
uses: ruby/setup-ruby@v1 | ||
with: | ||
ruby-version: ${{ matrix.ruby-version }} | ||
bundler-cache: true | ||
|
||
# This prevents a "Failed to build gem native extension" error when | ||
# running `bundle install` inside a Rails app that is generated for | ||
# testing. The error occurs only in CI, and only when using Ruby 3.0 and | ||
# Rails >= 7.1. | ||
- name: Install sass-embedded gem | ||
if: ${{ matrix.ruby-version == '3.0' }} | ||
run: gem install sass-embedded | ||
|
||
- name: Run tests | ||
run: | | ||
bundle exec rake |
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
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,29 @@ | ||
appraise "rails_7_0_sprockets" do | ||
gem "rails", "~> 7.0.0" | ||
gem "sprockets-rails" | ||
end | ||
|
||
appraise "rails_7_0_propshaft" do | ||
gem "rails", "~> 7.0.0" | ||
gem "propshaft" | ||
end | ||
|
||
appraise "rails_7_1_sprockets" do | ||
gem "rails", "~> 7.1.0" | ||
gem "sprockets-rails" | ||
end | ||
|
||
appraise "rails_7_1_propshaft" do | ||
gem "rails", "~> 7.1.0" | ||
gem "propshaft" | ||
end | ||
|
||
appraise "rails_main_sprockets" do | ||
gem "rails", github: "rails/rails", branch: "main" | ||
gem "sprockets-rails" | ||
end | ||
|
||
appraise "rails_main_propshaft" do | ||
gem "rails", github: "rails/rails", branch: "main" | ||
gem "propshaft" | ||
end |
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 |
---|---|---|
@@ -1,10 +1,9 @@ | ||
source 'https://rubygems.org' | ||
git_source(:github) { |repo| "https://github.com/#{repo}.git" } | ||
|
||
gemspec | ||
|
||
gem "appraisal" | ||
gem "rails", "~> 6.1.0" | ||
gem "sqlite3" | ||
gem "debug", ">= 1.0.0" | ||
|
||
group :test do | ||
gem "actionmailer", ">= 6.0.0" | ||
end |
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
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
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,11 @@ | ||
# This file was generated by Appraisal | ||
|
||
source "https://rubygems.org" | ||
|
||
gem "appraisal" | ||
gem "rails", "~> 7.0.0" | ||
gem "sqlite3" | ||
gem "debug", ">= 1.0.0" | ||
gem "propshaft" | ||
|
||
gemspec path: "../" |
Oops, something went wrong.