From 9ef04518f932c29224169a957d64d2c13ce90101 Mon Sep 17 00:00:00 2001 From: guwirth Date: Fri, 16 Aug 2024 14:06:53 +0200 Subject: [PATCH] test with different sonarscanner versions --- .github/workflows/cxx-ci.yml | 8 ++++---- integration-tests/features/webapi.py | 2 +- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/cxx-ci.yml b/.github/workflows/cxx-ci.yml index 3c580f6295..47cf244808 100644 --- a/.github/workflows/cxx-ci.yml +++ b/.github/workflows/cxx-ci.yml @@ -308,8 +308,8 @@ jobs: os: [ubuntu-latest] java: [ '17' ] distribution: [ 'temurin' ] - sonarqube: [ '9.9.6.92038', '10.6.0.92116' ] - sonarscanner: [ '6.1.0.4477' ] + sonarqube: [ '10.6.0.92116' ] + sonarscanner: [ '4.8.1.3023', '5.0.0.2966', '5.0.1.3006', '6.0.0.4432', '6.1.0.4477' ] runs-on: ${{ matrix.os }} needs: [build-linux, verify-rules] @@ -449,8 +449,8 @@ jobs: os: [windows-latest] java: [ '17' ] distribution: [ 'temurin' ] - sonarqube: [ '9.9.6.92038', '10.6.0.92116' ] - sonarscanner: [ '6.1.0.4477' ] + sonarqube: [ '10.6.0.92116' ] + sonarscanner: [ '4.8.1.3023', '5.0.0.2966', '5.0.1.3006', '6.0.0.4432', '6.1.0.4477' ] runs-on: ${{ matrix.os }} # needs build-linux because of JAR artifacts diff --git a/integration-tests/features/webapi.py b/integration-tests/features/webapi.py index 42188cf42d..62fce4889c 100644 --- a/integration-tests/features/webapi.py +++ b/integration-tests/features/webapi.py @@ -24,7 +24,7 @@ SONAR_URL = ('http://localhost:9000') -SONAR_LOGIN = os.getenv('sonar.token', 'admin') +SONAR_LOGIN = os.getenv('sonar.login', 'admin') SONAR_PASSWORD = os.getenv('sonar.password', 'admin')