-
-
Notifications
You must be signed in to change notification settings - Fork 104
Add fossil resolver #530
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
straight-shoota
merged 25 commits into
crystal-lang:master
from
MistressRemilia:add-fossil-resolver
Mar 17, 2022
Merged
Add fossil resolver #530
Changes from all commits
Commits
Show all changes
25 commits
Select commit
Hold shift + click to select a range
2485428
Initial work on Fossil resolver
95c188d
Initial work on Fossil resolver
MistressRemilia 4abe844
Merge branch 'add-fossil-resolver' of github.com:MistressRemilia/shar…
MistressRemilia 41e55a9
Remove unneded lines
MistressRemilia dbc0fc2
Add documentation
MistressRemilia aad749e
Add spec tests
MistressRemilia c15fdd8
Fix FossilResolver so that it passes the specs.
MistressRemilia d33c81a
Install fossil
MistressRemilia 5b816d1
Install fossil (I hope)
MistressRemilia 5ae7bcd
Format using `crystal tool format`
MistressRemilia fbbf336
Be sure USER is set in the environment on Linux
MistressRemilia 9c12b0b
Use -nested when opening the Fossil repository.
MistressRemilia 39c41e2
spec: Use CIRCLE_PROJECT_USERNAME instead of USER for the username
MistressRemilia 5fa397d
Fix syntax error
8000
MistressRemilia 0b07b11
Add workaround for older Fossil versions that don't have the --workdi…
ff419d1
Try something different with user environment variables *sigh*
a3bca12
Use less than, not less than or equal.
9833fd0
Use the environment: key to export environment variables for jobs
b911ff6
Improve support for older versions of Fossil.
a5958a8
Fix tests
9dc62b9
Merge branch 'crystal-lang:master' into add-fossil-resolver
MistressRemilia f6f036a
Use #split instead of #lines
eb62bcf
Update .github/workflows/ci.yml
MistressRemilia 615868a
Update docs/shard.yml.adoc
MistressRemilia 2a90c8a
Ignore the extra '--- entry limit (1) reached ---' string that gets p…
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
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
Oops, something went wrong.
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.
This looks like it returns a list with only a single commit instead of a list of all commits. What's the reason for that?
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.
That mirrors the behavior of the Mercurial code, which this was based on. That code looks like this:
Let me go ahead and adjust the Fossil-based stuff to not rely on a list since it seems like it's not needed.