-
Notifications
You must be signed in to change notification settings - Fork 132
Add knapsack gem #390
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
Merged
Merged
Add knapsack gem #390
Changes from all commits
Commits
Show all changes
20 commits
Select commit
Hold shift + click to select a range
80a5891
Add knapsack gem
enzofab91 d4672b1
Add total nodes to ci workflow
enzofab91 c0f6052
empty commit to run CI
enzofab91 62f8ea9
empty commit to run CI
enzofab91 18f2c6c
empty commit to run CI
enzofab91 a40547c
empty commit to run CI
enzofab91 691f400
Update CI setup
enzofab91 2e624f0
Move CI_NODE_TOTAL to secrets
enzofab91 27a4dc0
Move CI_NODE_TOTAL to secrets
enzofab91 fc2d158
Move CI_NODE_TOTAL to secrets
enzofab91 0ebfcb9
Move CI_NODE_TOTAL to secrets
enzofab91 51eb9f8
Move CI_NODE_TOTAL to secrets
enzofab91 b685aa8
Fix
enzofab91 57e4b7a
Remove advertisements and warning when running CI
enzofab91 316918a
move harcoded values to secrets with a default value
rodrieiz bda5aca
try to set matrix strategy
rodrieiz fa62ac7
queue mode works?
rodrieiz 8b6591e
vars
rodrieiz 91d7b17
Merge branch 'release/improve-ci' into add_knapsack_gem
rodrieiz c21414b
Merge branch 'release/improve-ci' into add_knapsack_gem
enzofab91 File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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 hidden or 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 hidden or 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 hidden or 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 |
---|---|---|
|
@@ -4,3 +4,5 @@ | |
require_relative 'config/application' | ||
|
||
Rails.application.load_tasks | ||
|
||
Knapsack.load_tasks if defined?(Knapsack) |
This file contains hidden or 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,31 @@ | ||
{ | ||
"spec/policies/admin/page_policy_spec.rb": 0.038240999972913414, | ||
"spec/routing/sessions_routing_spec.rb": 0.006703999999444932, | ||
"spec/requests/api/v1/users/create_spec.rb": 0.5093869999982417, | ||
"spec/acceptance/settings_spec.rb": 0.17437299998709932, | ||
"spec/acceptance/sessions_spec.rb": 0.5090029999846593, | ||
"spec/acceptance/status_spec.rb": 0.009465000010095537, | ||
"spec/requests/api/v1/sessions/destroy_spec.rb": 0.2923869999940507, | ||
"spec/policies/admin/user_policy_spec.rb": 0.020087999990209937, | ||
"spec/routing/registrations_routing_spec.rb": 0.001361000002361834, | ||
"spec/policies/admin/application_policy_spec.rb": 0.011096000031102449, | ||
"spec/policies/admin_user_policy_spec.rb": 0.009194999991450459, | ||
"spec/routing/user_routing_spec.rb": 0.0026309999520890415, | ||
"spec/requests/api/v1/passwords/update_spec.rb": 0.4883949999930337, | ||
"spec/requests/api/v1/feature_flags_spec.rb": 0.040616000012960285, | ||
"spec/requests/api/v1/settings_spec.rb": 0.0425929999910295, | ||
"spec/requests/api/v1/passwords/create_spec.rb": 0.15221400000154972, | ||
"spec/acceptance/users_spec.rb": 0.5729850000352599, | ||
"spec/policies/user_policy_spec.rb": 0.015309000038541853, | ||
"spec/requests/api/v1/users/update_spec.rb": 0.9842829999979585, | ||
"spec/requests/api/v1/status_spec.rb": 0.01666500000283122, | ||
"spec/policies/application_policy_spec.rb": 0.008917000028304756, | ||
"spec/policies/admin/admin_user_policy_spec.rb": 0.005394000036176294, | ||
"spec/requests/api/v1/sessions/create_spec.rb": 0.49404099996900186, | ||
"spec/decorators/user_decorator_spec.rb": 0.005971000005956739, | ||
"spec/requests/api/v1/passwords/edit_spec.rb": 0.08089700003620237, | ||
"spec/acceptance/passwords_spec.rb": 0.6197870000032708, | ||
"spec/models/user_spec.rb": 0.09392800001660362, | ||
"spec/mailers/application_mailer_spec.rb": 0.0020680000307038426, | ||
"spec/requests/api/v1/users/show_spec.rb": 0.5047900000354275 | ||
} |
This file contains hidden or 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
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Great that you made it work, but for projects to start we might be good with just
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Okay we'll keep in this way to continue with our work/ tests but before merging into master we'll change and also we'll add the documentation explaining how to use