Skip to content
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

ci(core): fix connection reset #3014

Merged
merged 6 commits into from
Feb 23, 2023
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Force Maven resolver use the Wagon transport
  • Loading branch information
jerrinot committed Feb 23, 2023
commit 5f097649fab2716032cd686c6bd586479bf088b1
6 changes: 3 additions & 3 deletions ci/templates/steps.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ steps:
mavenPomFile: "pom.xml"
mavenOptions: "$(MAVEN_OPTS)"
options:
"compile $(javadoc_step) -DskipTests -P build-web-console$(javadoc_profile) -Dmaven.wagon.httpconnectionManager.ttlSeconds=30 -Dhttp.keepAlive=false -Dmaven.repo.local=$(MAVEN_CACHE_FOLDER)"
"compile $(javadoc_step) -DskipTests -P build-web-console$(javadoc_profile) -Dmaven.resolver.transport=wagon -Dmaven.wagon.httpconnectionManager.ttlSeconds=30 -Dhttp.keepAlive=false -Dmaven.repo.local=$(MAVEN_CACHE_FOLDER)"
jdkVersionOption: $(jdk)
condition:
or(eq(variables['SOURCE_CODE_CHANGED'], 'false'), eq(variables['testset'],
Expand All @@ -32,7 +32,7 @@ steps:
options:
"-X --batch-mode --quiet -Dtest=$(includeTests)
-Dtest.exclude=$(excludeTests)
-Dout=$(Build.SourcesDirectory)/ci/qlog.conf -Dmaven.wagon.httpconnectionManager.ttlSeconds=30 -Dhttp.keepAlive=false
-Dout=$(Build.SourcesDirectory)/ci/qlog.conf -Dmaven.resolver.transport=wagon -Dmaven.wagon.httpconnectionManager.ttlSeconds=30 -Dhttp.keepAlive=false
-DfailIfNoTests=false
-Dsurefire.failIfNoSpecifiedTests=false
-Dmaven.repo.local=$(MAVEN_CACHE_FOLDER)"
Expand All @@ -52,7 +52,7 @@ steps:
options:
"--batch-mode --quiet -Dtest=$(includeTests)
-Dtest.exclude=$(excludeTests)
-Dout=$(Build.SourcesDirectory)/ci/qlog.conf -Dmaven.wagon.httpconnectionManager.ttlSeconds=30 -Dhttp.keepAlive=false -Dmaven.repo.local=$(MAVEN_CACHE_FOLDER)"
-Dout=$(Build.SourcesDirectory)/ci/qlog.conf -Dmaven.resolver.transport=wagon -Dmaven.wagon.httpconnectionManager.ttlSeconds=30 -Dhttp.keepAlive=false -Dmaven.repo.local=$(MAVEN_CACHE_FOLDER)"
jdkVersionOption: $(jdk)
codeCoverageToolOption: "$(CODE_COVERAGE_TOOL_OPTION)"
codeCoverageClassFilter: "$(COVERAGE_DIFF)"
Expand Down