Skip to content

Commit

Permalink
Merge pull request #1629 from guwirth/sq-6.7.6
Browse files Browse the repository at this point in the history
test with SQ 6.7.6
  • Loading branch information
guwirth authored Dec 14, 2018
2 parents 0ef8566 + c875f72 commit f1b085d
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
6 changes: 3 additions & 3 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ jdk:
- oraclejdk8

env:
- SONARHOME=/tmp/sonarqube-6.7.5 SONARAPI=SqApi67
- SONARHOME=/tmp/sonarqube-6.7.6 SONARAPI=SqApi67
- SONARHOME=/tmp/sonarqube-7.0 SONARAPI=SqApi67
- SONARHOME=/tmp/sonarqube-7.1 SONARAPI=SqApi67
- SONARHOME=/tmp/sonarqube-7.2 SONARAPI=SqApi67
Expand Down Expand Up @@ -44,8 +44,8 @@ before_install:

install:
- pushd /tmp
- travis_retry wget -q https://binaries.sonarsource.com/Distribution/sonarqube/sonarqube-6.7.5.zip
- unzip -qq sonarqube-6.7.5.zip
- travis_retry wget -q https://binaries.sonarsource.com/Distribution/sonarqube/sonarqube-6.7.6.zip
- unzip -qq sonarqube-6.7.6.zip
- travis_retry wget -q https://binaries.sonarsource.com/Distribution/sonarqube/sonarqube-7.0.zip
- unzip -qq sonarqube-7.0.zip
- travis_retry wget -q https://binaries.sonarsource.com/Distribution/sonarqube/sonarqube-7.1.zip
Expand Down
10 changes: 5 additions & 5 deletions appveyor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,10 +43,10 @@ install:
}
if (!(Test-Path -Path "C:\sonarqube" )) {
(new-object System.Net.WebClient).DownloadFile(
'https://binaries.sonarsource.com/Distribution/sonarqube/sonarqube-6.7.5.zip',
'C:\sonarqube-6.7.5.zip'
'https://binaries.sonarsource.com/Distribution/sonarqube/sonarqube-6.7.6.zip',
'C:\sonarqube-6.7.6.zip'
)
[System.IO.Compression.ZipFile]::ExtractToDirectory("C:\sonarqube-6.7.5.zip", "C:\sonarqube")
[System.IO.Compression.ZipFile]::ExtractToDirectory("C:\sonarqube-6.7.6.zip", "C:\sonarqube")
}
- ps: |
If ($env:Platform -Match "x86") {
Expand All @@ -65,7 +65,7 @@ install:
- cmd: SET PATH=C:\maven\apache-maven-3.2.5\bin;%JAVA_HOME%\bin;C:\sonar-scanner\sonar-scanner-3.2.0.1227\bin;%PATH%
- cmd: SET M2_HOME=C:\maven\apache-maven-3.2.5
- cmd: SET MAVEN_HOME=C:\maven\apache-maven-3.2.5
- cmd: SET SONARHOME=C:\sonarqube\sonarqube-6.7.5
- cmd: SET SONARHOME=C:\sonarqube\sonarqube-6.7.6
- cmd: SET TestDataFolder=C:\projects\sonar-cxx\integration-tests\testdata
- cmd: SET

Expand Down Expand Up @@ -110,4 +110,4 @@ on_failure:
- ps: Get-ChildItem cxx-checks\target\surefire-reports\*.txt | % { Push-AppveyorArtifact $_.FullName -FileName $_.Name }
- ps: Get-ChildItem sonar-cxx-plugin\target\surefire-reports\*.txt | % { Push-AppveyorArtifact $_.FullName -FileName $_.Name }
- ps: Get-ChildItem *.log | % { Push-AppveyorArtifact $_.FullName -FileName $_.Name }
- ps: Get-ChildItem C:\sonarqube\sonarqube-6.7.5\logs\* | % { Push-AppveyorArtifact $_.FullName -FileName $_.Name }
- ps: Get-ChildItem C:\sonarqube\sonarqube-6.7.6\logs\* | % { Push-AppveyorArtifact $_.FullName -FileName $_.Name }

0 comments on commit f1b085d

Please sign in to comment.