Skip to content

Commit aecaf43

Browse files
henryjucsaba-feher-sonarsource
authored andcommitted
SQSCANGHA-40 Restore permission fix for files in the project basedir
1 parent 540792c commit aecaf43

File tree

2 files changed

+42
-5
lines changed

2 files changed

+42
-5
lines changed

.github/workflows/qa.yml

+37
Original file line numberDiff line numberDiff line change
@@ -153,3 +153,40 @@ jobs:
153153
- name: Assert
154154
run: |
155155
./test/assertFileContains ./output.properties "sonar.verbose=true"
156+
runAnalysisWithCacheTest:
157+
runs-on: ubuntu-latest
158+
services:
159+
sonarqube:
160+
image: sonarqube:lts-community
161+
ports:
162+
- 9000:9000
163+
volumes:
164+
- sonarqube_data:/opt/sonarqube/data
165+
- sonarqube_logs:/opt/sonarqube/logs
166+
- sonarqube_extensions:/opt/sonarqube/extensions
167+
options: >-
168+
--health-cmd "grep -Fq \"SonarQube is operational\" /opt/sonarqube/logs/sonar.log"
169+
--health-interval 10s
170+
--health-timeout 5s
171+
--health-retries 10
172+
steps:
173+
- uses: actions/checkout@v4
174+
with:
175+
token: ${{ secrets.GITHUB_TOKEN }}
176+
- name: SonarQube Cache
177+
uses: actions/cache@v4
178+
with:
179+
path: ${{ github.workspace }}/.sonar/cache
180+
key: ${{ runner.os }}-sonar
181+
- name: Run action on sample project
182+
id: runTest
183+
uses: ./
184+
env:
185+
SONAR_HOST_URL: http://sonarqube:9000
186+
SONAR_USER_HOME: ${{ github.workspace }}/.sonar
187+
with:
188+
args: -Dsonar.login=admin -Dsonar.password=admin
189+
projectBaseDir: ./test/example-project
190+
- name: Assert
191+
run: |
192+
./test/assertFileExists ./test/example-project/.scannerwork/report-task.txt

cleanup.sh

+5-5
Original file line numberDiff line numberDiff line change
@@ -2,12 +2,12 @@
22

33
set -e
44

5-
if [ ! -d "${INPUT_PROJECTBASEDIR%/}/.scannerwork" ]; then
6-
echo ".scannerwork directory not found; nothing to clean up."
7-
exit
8-
fi
5+
# Reset all files permissions to the default Runner user and group to allow the follow up steps (mainly cache) to access all files.
96

7+
# Assume that the first (non-hidden) file in the project directory is one from the project, and not one written by the scanner
108
_tmp_file=$(ls "${INPUT_PROJECTBASEDIR%/}/" | head -1)
9+
echo "Reading permissions from $_tmp_file"
1110
PERM=$(stat -c "%u:%g" "${INPUT_PROJECTBASEDIR%/}/$_tmp_file")
1211

13-
chown -R $PERM "${INPUT_PROJECTBASEDIR%/}/.scannerwork/"
12+
echo "Applying permissions $PERM to all files in the project base directory"
13+
chown -R $PERM "${INPUT_PROJECTBASEDIR%/}/"

0 commit comments

Comments
 (0)