forked from resque/resque-scheduler
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Adding rufus scheduler matrix to gh actions (resque#742)
* Adding rufus scheduler matrix to gh actions * Exclude rufus 3.3 * Use last supported rufus version as default * Excluding ruby 3.2 with rufus 3.2 * Stop all of the warnings * Excluding more failing versions * Stop all of the warnings * Cleanup unneeded dependencies in gemspec * Stop clobbering all of the env variables * Ensure some test env variables are reset * Excluding more failures * more failing matrix entries * Hopefully last exclusion * Another round of tweaks * Another round of fixes * Another round of fixes * One last exclusion * Adding continue-on-error
- Loading branch information
1 parent
bfbc753
commit a6840a4
Showing
7 changed files
with
77 additions
and
26 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
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,12 +1,18 @@ | ||
# vim:fileencoding=utf-8 | ||
source 'https://rubygems.org' | ||
|
||
case req = ENV['RESQUE'] | ||
when nil | ||
case resque_version = ENV.fetch('RESQUE', 'master') | ||
when 'master' | ||
gem 'resque', git: 'https://github.com/resque/resque' | ||
else | ||
gem 'resque', req | ||
gem 'resque', resque_version | ||
end | ||
|
||
case rufus_scheduler_version = ENV.fetch('RUFUS_SCHEDULER', '3.6') | ||
when 'master' | ||
gem 'rufus-scheduler', git: 'https://github.com/jmettraux/rufus-scheduler' | ||
else | ||
gem 'rufus-scheduler', rufus_scheduler_version | ||
end | ||
|
||
gemspec |
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
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