-
Notifications
You must be signed in to change notification settings - Fork 1.1k
[JENKINS-42971] GitSCMFileSystem consumes environment and expands branch name #1305
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
MarkEWaite
merged 18 commits into
jenkinsci:master
from
MartinKosicky:lightweight_checkout_expand_params
Nov 23, 2022
Merged
Changes from 2 commits
Commits
Show all changes
18 commits
Select commit
Hold shift + click to select a range
cc02c2f
[JENKINS-42971] GitSCMFileSystem consumes environment and expands bra…
a69a857
Raised jenkins.version in POM 2
27aa68e
Update pom.xml
MartinKosicky b04e8f7
Added testing of GitSCMFileSystem branch expansion using env vars
d7159dc
Removed unnecesary plugin incrementals in pom.xml .
6111ed5
Apply suggestions from code review (code format cleanup)
MartinKosicky 5f84f6b
HeadNameResult refactor
2b17a1c
Changed BOM and removed accidental test
ac7e38c
Merge branch 'master' into lightweight_checkout_expand_params
MarkEWaite c678a26
Merge remote-tracking branch 'upstream/master' into lightweight_check…
0fad6ba
Apply suggestions from code review. POM dependency of scm-api require…
MartinKosicky 33d96e0
Bumped jenkins version
c61fbc4
Revert "Bumped jenkins version"
b05d4ce
Merge branch 'master' into lightweight_checkout_expand_params
MarkEWaite 99eb6a2
Get scm-api version from bom
MarkEWaite 5e77775
Intentionally vary expected value in test
MarkEWaite 686cc2a
Merge branch 'master' into lightweight_checkout_expand_params
MarkEWaite 54af228
Retain API compatibilty by including previous signature
MarkEWaite 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
| Original file line number | Diff line number | Diff line change | ||||||||
|---|---|---|---|---|---|---|---|---|---|---|
|
|
@@ -61,7 +61,7 @@ | |||||||||
| <revision>4.11.5</revision> | ||||||||||
| <changelist>-SNAPSHOT</changelist> | ||||||||||
| <gitHubRepo>jenkinsci/${project.artifactId}-plugin</gitHubRepo> | ||||||||||
| <jenkins.version>2.303.3</jenkins.version> | ||||||||||
| <jenkins.version>2.319.3</jenkins.version> | ||||||||||
| <no-test-jar>false</no-test-jar> | ||||||||||
| <useBeta>true</useBeta> | ||||||||||
| <linkXRef>false</linkXRef> | ||||||||||
|
|
@@ -102,6 +102,7 @@ | |||||||||
| </dependency> | ||||||||||
| <dependency> | ||||||||||
| <groupId>org.jenkins-ci.plugins</groupId> | ||||||||||
| <version>625.va_c59c48ce36f</version> <!-- TODO: https://github.com/jenkinsci/scm-api-plugin/pull/160 --> | ||||||||||
MartinKosicky marked this conversation as resolved.
Outdated
Show resolved
Hide resolved
|
||||||||||
| <artifactId>scm-api</artifactId> | ||||||||||
| </dependency> | ||||||||||
| <dependency> | ||||||||||
|
|
@@ -191,6 +192,7 @@ | |||||||||
| <dependency> | ||||||||||
| <groupId>org.jenkins-ci.plugins</groupId> | ||||||||||
| <artifactId>scm-api</artifactId> | ||||||||||
| <version>625.va_c59c48ce36f</version> <!-- TODO: https://github.com/jenkinsci/scm-api-plugin/pull/160 --> | ||||||||||
MartinKosicky marked this conversation as resolved.
Outdated
Show resolved
Hide resolved
|
||||||||||
| <classifier>tests</classifier> | ||||||||||
| <scope>test</scope> | ||||||||||
| </dependency> | ||||||||||
|
|
@@ -255,12 +257,20 @@ | |||||||||
| <id>repo.jenkins-ci.org</id> | ||||||||||
| <url>https://repo.jenkins-ci.org/public/</url> | ||||||||||
| </repository> | ||||||||||
| <repository> <!-- TODO FOR DRAFT --> | ||||||||||
| <id>incrementals.jenkins-ci.org</id> | ||||||||||
| <url>https://repo.jenkins-ci.org/incrementals/</url> | ||||||||||
| </repository> | ||||||||||
MartinKosicky marked this conversation as resolved.
Outdated
Show resolved
Hide resolved
|
||||||||||
| </repositories> | ||||||||||
| <pluginRepositories> | ||||||||||
| <pluginRepository> | ||||||||||
| <id>repo.jenkins-ci.org</id> | ||||||||||
| <url>https://repo.jenkins-ci.org/public/</url> | ||||||||||
| </pluginRepository> | ||||||||||
| <pluginRepository><!-- TODO FOR DRAFT --> | ||||||||||
| <id>incrementals.jenkins-ci.org</id> | ||||||||||
| <url>https://repo.jenkins-ci.org/incrementals/</url> | ||||||||||
| </pluginRepository> | ||||||||||
|
||||||||||
| <pluginRepository><!-- TODO FOR DRAFT --> | |
| <id>incrementals.jenkins-ci.org</id> | |
| <url>https://repo.jenkins-ci.org/incrementals/</url> | |
| </pluginRepository> |
Contributor
Author
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.
I must say that I wasnt able to compile it locally without these temporary .pom changes, but I assume they will be removed before it will be merged
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.
Update
git-plugin/pom.xml
Line 78 in d7159dc
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.
Ok i updated it, I hope correctly