File tree Expand file tree Collapse file tree 2 files changed +3
-4
lines changed
actions/setup-sonar-tools Expand file tree Collapse file tree 2 files changed +3
-4
lines changed Original file line number Diff line number Diff line change @@ -3,9 +3,9 @@ description: Download and install sonar-scanner and build-wrapper
33runs :
44 using : " composite"
55 steps :
6- - run : echo "SONAR_SCANNER_VERSION=5.0.1.3006 " >> $GITHUB_ENV
6+ - run : echo "SONAR_SCANNER_VERSION=7.3.0.5189 " >> $GITHUB_ENV
77 shell : bash
8- - run : echo "SONAR_SCANNER_HOME=${HOME}/.sonar/sonar-scanner-$SONAR_SCANNER_VERSION-linux" >> $GITHUB_ENV
8+ - run : echo "SONAR_SCANNER_HOME=${HOME}/.sonar/sonar-scanner-$SONAR_SCANNER_VERSION-linux-x64 " >> $GITHUB_ENV
99 shell : bash
1010 - run : echo "SONAR_SCANNER_OPTS=-server" >> $GITHUB_ENV
1111 shell : bash
1919 sudo apt-get update \
2020 && sudo apt-get install nodejs curl unzip \
2121 && curl --create-dirs -sSLo $HOME/.sonar/sonar-scanner.zip \
22- https://binaries.sonarsource.com/Distribution/sonar-scanner-cli/sonar-scanner-cli-$SONAR_SCANNER_VERSION-linux.zip \
22+ https://binaries.sonarsource.com/Distribution/sonar-scanner-cli/sonar-scanner-cli-$SONAR_SCANNER_VERSION-linux-x64 .zip \
2323 && unzip -o $HOME/.sonar/sonar-scanner.zip -d $HOME/.sonar/ \
2424 && curl --create-dirs -sSLo $HOME/.sonar/build-wrapper-linux-x86.zip \
2525 https://sonarcloud.io/static/cpp/build-wrapper-linux-x86.zip \
Original file line number Diff line number Diff line change @@ -117,7 +117,6 @@ jobs:
117117 SONAR_TOKEN : ${{ secrets.SONAR_TOKEN }}
118118 run : |
119119 sonar-scanner \
120- -Dsonar.cfamily.build-wrapper-output=bw-output \
121120 -Dsonar.projectVersion="$(git describe --abbrev=4 --dirty=-dirty --always --tags | tr -d '\n')"
122121
123122 ubuntu-python-tests :
You can’t perform that action at this time.
0 commit comments