-
-
Notifications
You must be signed in to change notification settings - Fork 1.1k
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
107 changed files
with
462 additions
and
504 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 |
---|---|---|
|
@@ -5,6 +5,12 @@ | |
version: 2.0 | ||
|
||
jobs: | ||
publish: | ||
machine: true | ||
steps: | ||
- checkout | ||
- run: git remote add cucumber-pro [email protected]:cucumber-ruby.git | ||
- run: git push cucumber-pro $CIRCLE_BRANCH | ||
"ruby-2.4.1": | ||
docker: | ||
- image: circleci/ruby:2.4.1 | ||
|
@@ -23,11 +29,8 @@ jobs: | |
- ./vendor/bundle | ||
key: bundle-{{ checksum "Gemfile.lock" }} | ||
- run: | ||
name: Run RSpec | ||
command: bundle exec rake spec | ||
- run: | ||
name: Run Cucumber | ||
command: bundle exec rake cucumber | ||
name: Run Rake | ||
command: bundle exec rake | ||
|
||
"ruby-2.3.5": | ||
docker: | ||
|
@@ -47,11 +50,8 @@ jobs: | |
- ./vendor/bundle | ||
key: bundle-{{ checksum "Gemfile.lock" }} | ||
- run: | ||
name: Run RSpec | ||
command: bundle exec rake spec | ||
- run: | ||
name: Run Cucumber | ||
command: bundle exec rake cucumber | ||
name: Run Rake | ||
command: bundle exec rake | ||
|
||
"ruby-2.2.8": | ||
docker: | ||
|
@@ -71,11 +71,8 @@ jobs: | |
- ./vendor/bundle | ||
key: bundle-{{ checksum "Gemfile.lock" }} | ||
- run: | ||
name: Run RSpec | ||
command: bundle exec rake spec | ||
- run: | ||
name: Run Cucumber | ||
command: bundle exec rake cucumber | ||
name: Run Rake | ||
command: bundle exec rake | ||
|
||
"jruby-9.1.13.0": | ||
docker: | ||
|
@@ -95,17 +92,16 @@ jobs: | |
- ./vendor/bundle | ||
key: bundle-{{ checksum "Gemfile.lock" }} | ||
- run: | ||
name: Run RSpec | ||
command: bundle exec rake spec | ||
- run: | ||
name: Run Cucumber | ||
command: bundle exec rake cucumber | ||
name: Run Rake | ||
command: bundle exec rake | ||
|
||
workflows: | ||
version: 2 | ||
build: | ||
jobs: | ||
# Keep lowest ruby-* version in sync with .cucumber.gemspec | ||
- "ruby-2.4.1" | ||
- "ruby-2.3.5" | ||
- "ruby-2.2.8" | ||
- "jruby-9.1.13.0" | ||
- publish |
This file was deleted.
Oops, something went wrong.
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,17 @@ | ||
# Number of days of inactivity before an issue becomes stale | ||
daysUntilStale: 60 | ||
# Number of days of inactivity before a stale issue is closed | ||
daysUntilClose: 7 | ||
# Issues with these labels will never be considered stale | ||
exemptLabels: | ||
- Slow Burner | ||
# Label to use when marking an issue as stale | ||
staleLabel: Stale | ||
# Comment to post when marking an issue as stale. Set to `false` to disable | ||
markComment: > | ||
This issue has been automatically marked as stale because it has not had | ||
recent activity. It will be closed in a week if no further activity occurs. | ||
# Comment to post when closing a stale issue. Set to `false` to disable | ||
closeComment: > | ||
This issue has been automatically closed because of inactivity. | ||
You can support the Cucumber core team on [opencollective](https://opencollective.com/cucumber). |
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.