Skip to content

Commit 0ab314b

Browse files
SQSCANGHA-75 Support self-hosted runners not clearing temp after run (#164)
1 parent ea0362b commit 0ab314b

File tree

2 files changed

+45
-2
lines changed

2 files changed

+45
-2
lines changed

.github/workflows/qa-main.yml

+36-1
Original file line numberDiff line numberDiff line change
@@ -618,4 +618,39 @@ jobs:
618618
projectBaseDir: ./test/example-project
619619
- name: Assert failure of previous step
620620
if: steps.wrong_ssl_certificate.outcome == 'success'
621-
run: exit 1
621+
run: exit 1
622+
overridesScannerLocalFolderWhenPresent:
623+
name: >
624+
'SCANNER_LOCAL_FOLDER' is overridden with warning when present
625+
runs-on: ubuntu-latest
626+
steps:
627+
- uses: actions/checkout@v4
628+
with:
629+
token: ${{ secrets.GITHUB_TOKEN }}
630+
- name: Create a dummy SCANNER_LOCAL_FOLDER with dummy content in it
631+
run: |
632+
SCANNER_VERSION="6.2.1.4610"
633+
SCANNER_LOCAL_FOLDER="$RUNNER_TEMP/sonar-scanner-cli-$SCANNER_VERSION-$RUNNER_OS-$RUNNER_ARCH"
634+
# emit SCANNER_VERSION and SCANNER_LOCAL_FOLDER to be able to read them in the next steps
635+
echo "SCANNER_VERSION=$SCANNER_VERSION" >> $GITHUB_ENV
636+
echo "SCANNER_LOCAL_FOLDER=$SCANNER_LOCAL_FOLDER" >> $GITHUB_ENV
637+
mkdir -p "$SCANNER_LOCAL_FOLDER"
638+
touch "$SCANNER_LOCAL_FOLDER/some_content.txt"
639+
- name: Assert SCANNER_LOCAL_FOLDER exists and dummy file is in it
640+
run: |
641+
[ -d "$SCANNER_LOCAL_FOLDER" ] || exit 1
642+
[ -f "$SCANNER_LOCAL_FOLDER/some_content.txt" ] || exit 1
643+
- name: Run action with SONAR_SCANNER_TEMP
644+
uses: ./
645+
env:
646+
SONAR_SCANNER_TEMP: /tmp/sonar-scanner
647+
SONAR_HOST_URL: http://not_actually_used
648+
NO_CACHE: true # force install-sonar-scanner-cli.sh execution
649+
with:
650+
args: -Dsonar.scanner.internal.dumpToFile=./output.properties
651+
scannerVersion: ${{ env.SCANNER_VERSION }}
652+
- name: Assert SCANNER_LOCAL_FOLDER exists and dummy file is not in it
653+
run: |
654+
[ -d "$SCANNER_LOCAL_FOLDER" ] || exit 1
655+
[ ! -f "$SCANNER_LOCAL_FOLDER/some_content.txt" ] || exit 1
656+

scripts/install-sonar-scanner-cli.sh

+9-1
Original file line numberDiff line numberDiff line change
@@ -48,5 +48,13 @@ fi
4848

4949
unzip -q -o $SCANNER_FILE_NAME
5050

51+
SCANNER_UNZIP_FOLDER="sonar-scanner-$INPUT_SCANNERVERSION-$FLAVOR"
5152
# Folder name should correspond to the directory cached by the actions/cache
52-
mv sonar-scanner-$INPUT_SCANNERVERSION-$FLAVOR $RUNNER_TEMP/sonar-scanner-cli-$INPUT_SCANNERVERSION-$RUNNER_OS-$RUNNER_ARCH
53+
SCANNER_LOCAL_FOLDER="$RUNNER_TEMP/sonar-scanner-cli-$INPUT_SCANNERVERSION-$RUNNER_OS-$RUNNER_ARCH"
54+
55+
if [ -d "$SCANNER_LOCAL_FOLDER" ]; then
56+
echo "::warning title=SonarScanner::Cleaning existing scanner folder: $SCANNER_LOCAL_FOLDER"
57+
rm -rf "$SCANNER_LOCAL_FOLDER"
58+
fi
59+
60+
mv -f "$SCANNER_UNZIP_FOLDER" "$SCANNER_LOCAL_FOLDER"

0 commit comments

Comments
 (0)