Skip to content

Commit

Permalink
Fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
ctmay4 committed Jul 7, 2023
1 parent fee74b9 commit 06a2a12
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 10 deletions.
4 changes: 3 additions & 1 deletion .github/workflows/integration.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,4 +33,6 @@ jobs:
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} # Needed to get PR information, if any
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}
run: ./gradlew build sonarqube
run: |
chmod +x gradlew
./gradlew build sonar
9 changes: 0 additions & 9 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -88,15 +88,6 @@ sonarqube {
ossIndexAudit {
dependencyGraph = true
printBanner = false

// only set proxy if running outside of Github Actions
if (!System.getenv().GITHUB_ACTIONS) {
proxyConfiguration {
protocol = 'http'
host = 'webproxy-btp.imsweb.com'
port = 8080
}
}
}
check.dependsOn 'ossIndexAudit'

Expand Down

0 comments on commit 06a2a12

Please sign in to comment.