-
Notifications
You must be signed in to change notification settings - Fork 528
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
feat (jkube-kit/config/service) : Add BuildPackBuildService (#2493) #2448
feat (jkube-kit/config/service) : Add BuildPackBuildService (#2493) #2448
Conversation
Eclipse JKube CI ReportStarted new GH workflow run for #2448 (2024-02-05T16:50:45Z) ⚙️ JKube E2E Tests (7787834629)
|
bf8dec2
to
a1291ac
Compare
This is not small and simple. |
This comment was marked as outdated.
This comment was marked as outdated.
SonarCloud Quality Gate failed. 0 Bugs 46.2% Coverage The version of Java (11.0.21) you have used to run this analysis is deprecated and we will stop accepting it soon. Please update to at least Java 17. Catch issues before they fail your Quality Gate with our IDE extension SonarLint |
Codecov ReportAll modified and coverable lines are covered by tests ✅
Additional details and impacted files@@ Coverage Diff @@
## master #2448 +/- ##
=============================================
+ Coverage 59.36% 70.32% +10.96%
- Complexity 4586 4971 +385
=============================================
Files 500 481 -19
Lines 21211 19349 -1862
Branches 2830 2499 -331
=============================================
+ Hits 12591 13608 +1017
+ Misses 7370 4513 -2857
+ Partials 1250 1228 -22 ☔ View full report in Codecov by Sentry. |
5745971
to
96fc976
Compare
392d18e
to
27fa035
Compare
<plugins> | ||
<plugin> | ||
<groupId>org.apache.maven.plugins</groupId> | ||
<artifactId>maven-jar-plugin</artifactId> | ||
<executions> | ||
<execution> | ||
<goals> | ||
<goal>test-jar</goal> | ||
</goals> | ||
</execution> | ||
</executions> | ||
</plugin> | ||
</plugins> |
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.
Is this necessary?
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.
No, looks like it's a leftover from previous approach I was trying
27fa035
to
bb3e6da
Compare
@@ -55,7 +55,7 @@ abstract class AbstractBuildPackCliDownloaderTest { | |||
abstract String getProcessorArchitecture(); | |||
|
|||
@BeforeEach | |||
void setUp() { | |||
void setUp() throws IOException { |
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 think this is also unneeded now
bb3e6da
to
c06741e
Compare
c06741e
to
4b5c0b2
Compare
Add TestHttpBuildPackArtifactsServer to host build pack download artifacts so that this test utility class can be reused in dependent modules Signed-off-by: Rohan Kumar <[email protected]>
4b5c0b2
to
a109c78
Compare
…jkube#2493) + Add new enum for buildpacks in JKubeBuildStrategy + Add BuildPackBuildService that would be activated when build strategy is set to buildpacks Signed-off-by: Rohan Kumar <[email protected]>
a109c78
to
47bcef0
Compare
Signed-off-by: Marc Nuri <[email protected]>
Quality Gate failedFailed conditions 61.0% Coverage on New Code (required ≥ 80%) |
Description
Related to #2465
Fixes #2493
buildpacks
as new enum for buildpacks in JKubeBuildStrategyis set to buildpacks
Type of change
test, version modification, documentation, etc.)
Checklist