Skip to content

Commit

Permalink
enabled debug logs
Browse files Browse the repository at this point in the history
Signed-off-by: ac892247 <a.chmelo@gmail.com>
  • Loading branch information
achmelo committed Nov 4, 2024
1 parent 66af2e4 commit 93494eb
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/integration-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -1487,8 +1487,8 @@ jobs:
path: GatewayProxy
- uses: actions/download-artifact@v4
with:
name: CITestsZaas-${{ env.JOB_ID }}
path: CITestsZaas
name: ContainerCITestsZaas-${{ env.JOB_ID }}
path: ContainerCITestsZaas
- uses: actions/download-artifact@v4
with:
name: CITestsWebSocketChaoticHA-${{ env.JOB_ID }}
Expand All @@ -1500,7 +1500,7 @@ jobs:

- name: Code coverage and publish results
run: >
./gradlew --info coverage sonar -Dresults="containercitests/results,citestswithinfinispan/results,GatewayProxy/results,citestswebsocketchaoticha/results,GatewayServiceRouting/results,CITestsZaas/results"
./gradlew --info coverage sonar -Dresults="containercitests/results,citestswithinfinispan/results,GatewayProxy/results,citestswebsocketchaoticha/results,GatewayServiceRouting/results,ContainerCITestsZaas/results"
-Psonar.host.url=$SONAR_HOST_URL -Dsonar.token=$SONAR_TOKEN -Partifactory_user=$ARTIFACTORY_USERNAME -Partifactory_password=$ARTIFACTORY_PASSWORD
env:
ARTIFACTORY_USERNAME: ${{ secrets.ARTIFACTORY_USERNAME }}
Expand Down
2 changes: 1 addition & 1 deletion gradle/jib.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ def setJib(componentName, javaAgentPort, debugPort) {
jib.to.image = imageName
jib.to.auth.username = project.hasProperty("zowe.docker.username") ? project.getProperty("zowe.docker.username") : ""
jib.to.auth.password = project.hasProperty("zowe.docker.password") ? project.getProperty("zowe.docker.password") : ""
jib.container.args = ['--spring.config.additional-location=file:/docker/' + componentName + '.yml', '--spring.profiles.include=dev,debug']
jib.container.args = ['-Dspring.config.additional-location=file:/docker/' + componentName + '.yml', '-Dspring.profiles.include=dev,debug']
jib.container.jvmFlags = javaAgentOptions + addOpensOptions
jib.extraDirectories.paths = ['../config', '../keystore', '../scripts']
}
Expand Down

0 comments on commit 93494eb

Please sign in to comment.