Skip to content
Open
Changes from all commits
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
13 changes: 12 additions & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,13 @@ jobs:
}
]
EOF
- name: Inspect tool cache
run: |
echo "RUNNER_TOOL_CACHE=$RUNNER_TOOL_CACHE"
ls -la "$RUNNER_TOOL_CACHE"
find "$RUNNER_TOOL_CACHE" -maxdepth 2 -mindepth 1 | sort
- name: SonarQube Scan
uses: SonarSource/sonarqube-scan-action@jh/SQSCANGHA-144_add_qa_gate_jobs
uses: SonarSource/sonarqube-scan-action@0368e05ab12cda7555b44a36d694dc4044545b29 # worktree-SQSCANGHA-135
with:
args: >
-Dsonar.scanner.sonarcloudUrl=${{ vars.SONAR_CLOUD_URL }}
Expand All @@ -34,6 +39,12 @@ jobs:
-Dsonar.organization=${{ vars.SONAR_ORGANIZATION }}
env:
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}
- name: Inspect tool cache
if: always()
run: |
echo "RUNNER_TOOL_CACHE=$RUNNER_TOOL_CACHE"
ls -la "$RUNNER_TOOL_CACHE"
find "$RUNNER_TOOL_CACHE" -maxdepth 2 -mindepth 1 | sort

gate:
name: Build - gate
Expand Down