-
-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #758 from zerasul/develop
v1.4.1
- Loading branch information
Showing
14 changed files
with
983 additions
and
347 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -9,4 +9,6 @@ vsc-extension-quickstart.md | |
**/*.map | ||
**/*.ts | ||
coverage/** | ||
.nyc_output/ | ||
.nyc_output/ | ||
.github/** | ||
azure-pipelines.yml |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,55 +1,53 @@ | ||
trigger: | ||
|
||
- master | ||
- master | ||
|
||
strategy: | ||
matrix: | ||
linux: | ||
imageName: 'ubuntu-18.04' | ||
imageName: "ubuntu-latest" | ||
mac: | ||
imageName: 'macos-10.15' | ||
imageName: "macos-latest" | ||
windows: | ||
imageName: 'vs2017-win2016' | ||
imageName: "windows-latest" | ||
|
||
pool: | ||
vmImage: $(imageName) | ||
|
||
steps: | ||
|
||
- task: NodeTool@0 | ||
inputs: | ||
versionSpec: '12.x' | ||
displayName: 'Install Node.js' | ||
|
||
- bash: | | ||
/usr/bin/Xvfb :99 -screen 0 1024x768x24 > /dev/null 2>&1 & | ||
echo ">>> Started xvfb" | ||
displayName: Start xvfb | ||
condition: and(succeeded(), eq(variables['Agent.OS'], 'Linux')) | ||
|
||
- bash: | | ||
echo ">>> Compile vscode-test" | ||
yarn && yarn compile | ||
echo ">>> Compiled vscode-test" | ||
cd sample | ||
echo ">>> Run sample integration test" | ||
yarn && yarn compile && yarn test | ||
displayName: Run Tests | ||
env: | ||
DISPLAY: ':99.0' | ||
|
||
- task: SonarCloudPrepare@1 | ||
inputs: | ||
SonarCloud: 'SonarCloud' | ||
organization: 'zerasul-github' | ||
scannerMode: 'CLI' | ||
configMode: 'manual' | ||
cliProjectKey: 'genesis-code-project' | ||
cliProjectName: 'Genesis Code' | ||
cliSources: 'src/' | ||
extraProperties: | | ||
# Additional properties that will be passed to the scanner, | ||
# Put one key=value per line, example: | ||
sonar.exclusions=src/test/ | ||
- task: SonarCloudAnalyze@1 | ||
- task: NodeTool@0 | ||
inputs: | ||
versionSpec: "12.x" | ||
displayName: "Install Node.js" | ||
|
||
- bash: | | ||
/usr/bin/Xvfb :99 -screen 0 1024x768x24 > /dev/null 2>&1 & | ||
echo ">>> Started xvfb" | ||
displayName: Start xvfb | ||
condition: and(succeeded(), eq(variables['Agent.OS'], 'Linux')) | ||
- bash: | | ||
echo ">>> Compile vscode-test" | ||
yarn && yarn compile | ||
echo ">>> Compiled vscode-test" | ||
cd sample | ||
echo ">>> Run sample integration test" | ||
yarn && yarn compile && yarn test | ||
displayName: Run Tests | ||
env: | ||
DISPLAY: ":99.0" | ||
- task: SonarCloudPrepare@1 | ||
inputs: | ||
SonarCloud: "SonarCloud" | ||
organization: "zerasul-github" | ||
scannerMode: "CLI" | ||
configMode: "manual" | ||
cliProjectKey: "genesis-code-project" | ||
cliProjectName: "Genesis Code" | ||
cliSources: "src/" | ||
extraProperties: | | ||
# Additional properties that will be passed to the scanner, | ||
# Put one key=value per line, example: | ||
sonar.exclusions=src/test/ | ||
- task: SonarCloudAnalyze@1 |
Oops, something went wrong.