File tree 2 files changed +42
-5
lines changed
2 files changed +42
-5
lines changed Original file line number Diff line number Diff line change @@ -153,3 +153,40 @@ jobs:
153
153
- name : Assert
154
154
run : |
155
155
./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
Original file line number Diff line number Diff line change 2
2
3
3
set -e
4
4
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.
9
6
7
+ # Assume that the first (non-hidden) file in the project directory is one from the project, and not one written by the scanner
10
8
_tmp_file=$( ls " ${INPUT_PROJECTBASEDIR%/ } /" | head -1)
9
+ echo " Reading permissions from $_tmp_file "
11
10
PERM=$( stat -c " %u:%g" " ${INPUT_PROJECTBASEDIR%/ } /$_tmp_file " )
12
11
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%/ } /"
You can’t perform that action at this time.
0 commit comments