Skip to content

Commit

Permalink
Merge pull request SonarOpenCommunity#1498 from guwirth/test-sq72
Browse files Browse the repository at this point in the history
test with final SQ 7.2
  • Loading branch information
guwirth authored Jun 18, 2018
2 parents 151199a + 8ce4ed2 commit a57ef4e
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 11 deletions.
12 changes: 6 additions & 6 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,10 @@ jdk:
- oraclejdk8

env:
- SONARHOME=/tmp/sonarqube-6.7.3 SONARAPI=SqApi67
- SONARHOME=/tmp/sonarqube-6.7.4 SONARAPI=SqApi67
- SONARHOME=/tmp/sonarqube-7.0 SONARAPI=SqApi67
- SONARHOME=/tmp/sonarqube-7.1 SONARAPI=SqApi67
- SONARHOME=/tmp/sonarqube-7.2-RC1 SONARAPI=SqApi67
- SONARHOME=/tmp/sonarqube-7.2 SONARAPI=SqApi67

matrix:
fast_finish: true
Expand Down Expand Up @@ -42,14 +42,14 @@ before_install:

install:
- pushd /tmp
- travis_retry wget -q https://sonarsource.bintray.com/Distribution/sonarqube/sonarqube-6.7.3.zip
- unzip -qq sonarqube-6.7.3.zip
- travis_retry wget -q https://sonarsource.bintray.com/Distribution/sonarqube/sonarqube-6.7.4.zip
- unzip -qq sonarqube-6.7.4.zip
- travis_retry wget -q https://sonarsource.bintray.com/Distribution/sonarqube/sonarqube-7.0.zip
- unzip -qq sonarqube-7.0.zip
- travis_retry wget -q https://sonarsource.bintray.com/Distribution/sonarqube/sonarqube-7.1.zip
- unzip -qq sonarqube-7.1.zip
- travis_retry wget -q https://sonarsource.bintray.com/Distribution/sonarqube/sonarqube-7.2-RC1.zip
- unzip -qq sonarqube-7.2-RC1.zip
- travis_retry wget -q https://sonarsource.bintray.com/Distribution/sonarqube/sonarqube-7.2.zip
- unzip -qq sonarqube-7.2.zip
- travis_retry wget -q https://sonarsource.bintray.com/Distribution/sonar-scanner-cli/sonar-scanner-cli-3.1.0.1141.zip
- unzip -qq sonar-scanner-cli-3.1.0.1141.zip
- travis_retry wget -q https://github.com/htacg/tidy-html5/archive/5.6.0.zip --output-document=tidy-html5.zip
Expand Down
10 changes: 5 additions & 5 deletions appveyor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,10 +26,10 @@ install:
}
if (!(Test-Path -Path "C:\sonarqube" )) {
(new-object System.Net.WebClient).DownloadFile(
'https://sonarsource.bintray.com/Distribution/sonarqube/sonarqube-6.7.3.zip',
'C:\sonarqube-6.7.3.zip'
'https://sonarsource.bintray.com/Distribution/sonarqube/sonarqube-6.7.4.zip',
'C:\sonarqube-6.7.4.zip'
)
[System.IO.Compression.ZipFile]::ExtractToDirectory("C:\sonarqube-6.7.3.zip", "C:\sonarqube")
[System.IO.Compression.ZipFile]::ExtractToDirectory("C:\sonarqube-6.7.4.zip", "C:\sonarqube")
}
- ps: |
If ($env:Platform -Match "x86") {
Expand All @@ -49,7 +49,7 @@ install:
- cmd: SET PATH=C:\maven\apache-maven-3.2.5\bin;%JAVA_HOME%\bin;C:\sonar-scanner\sonar-scanner-3.1.0.1141\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.3
- cmd: SET SONARHOME=C:\sonarqube\sonarqube-6.7.4
- cmd: SET TestDataFolder=C:\projects\sonar-cxx\integration-tests\testdata
- cmd: SET

Expand Down Expand Up @@ -81,4 +81,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.3\logs\* | % { Push-AppveyorArtifact $_.FullName -FileName $_.Name }
- ps: Get-ChildItem C:\sonarqube\sonarqube-6.7.4\logs\* | % { Push-AppveyorArtifact $_.FullName -FileName $_.Name }

0 comments on commit a57ef4e

Please sign in to comment.