forked from microsoft/azuredatastudio
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge from vscode f5d3ffa (microsoft#7929)
* Merge from vscode f5d3ffa * fix launch script * add missing files
- Loading branch information
Anthony Dresser
authored
Oct 23, 2019
1 parent
4a68ab4
commit a94cbb5
Showing
189 changed files
with
1,973 additions
and
1,538 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 |
---|---|---|
@@ -0,0 +1,104 @@ | ||
name: CI | ||
|
||
on: [push, pull_request] | ||
|
||
jobs: | ||
linux: | ||
runs-on: ubuntu-latest | ||
env: | ||
CHILD_CONCURRENCY: "1" | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
steps: | ||
- uses: actions/checkout@v1 | ||
# TODO: rename azure-pipelines/linux/xvfb.init to github-actions | ||
- run: | | ||
sudo apt-get update | ||
sudo apt-get install -y libxkbfile-dev pkg-config libsecret-1-dev libxss1 dbus xvfb libgtk-3-0 | ||
sudo cp build/azure-pipelines/linux/xvfb.init /etc/init.d/xvfb | ||
sudo chmod +x /etc/init.d/xvfb | ||
sudo update-rc.d xvfb defaults | ||
sudo service xvfb start | ||
name: Setup Build Environment | ||
- uses: actions/setup-node@v1 | ||
with: | ||
node-version: 10 | ||
# TODO: cache node modules | ||
- run: yarn --frozen-lockfile | ||
name: Install Dependencies | ||
- run: yarn electron x64 | ||
name: Download Electron | ||
- run: yarn gulp hygiene --skip-tslint | ||
name: Run Hygiene Checks | ||
- run: yarn gulp tslint | ||
name: Run TSLint Checks | ||
- run: yarn monaco-compile-check | ||
name: Run Monaco Editor Checks | ||
- run: yarn compile | ||
name: Compile Sources | ||
- run: yarn download-builtin-extensions | ||
name: Download Built-in Extensions | ||
- run: DISPLAY=:10 ./scripts/test.sh --tfs "Unit Tests" | ||
name: Run Unit Tests | ||
- run: DISPLAY=:10 ./scripts/test-integration.sh --tfs "Integration Tests" | ||
name: Run Integration Tests | ||
|
||
windows: | ||
runs-on: windows-2016 | ||
env: | ||
CHILD_CONCURRENCY: "1" | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
steps: | ||
- uses: actions/checkout@v1 | ||
- uses: actions/setup-node@v1 | ||
with: | ||
node-version: 10 | ||
- uses: actions/setup-python@v1 | ||
with: | ||
python-version: '2.x' | ||
- run: yarn --frozen-lockfile | ||
name: Install Dependencies | ||
- run: yarn electron | ||
name: Download Electron | ||
- run: yarn gulp hygiene --skip-tslint | ||
name: Run Hygiene Checks | ||
- run: yarn gulp tslint | ||
name: Run TSLint Checks | ||
- run: yarn monaco-compile-check | ||
name: Run Monaco Editor Checks | ||
- run: yarn compile | ||
name: Compile Sources | ||
- run: yarn download-builtin-extensions | ||
name: Download Built-in Extensions | ||
- run: .\scripts\test.bat --tfs "Unit Tests" | ||
name: Run Unit Tests | ||
- run: .\scripts\test-integration.bat --tfs "Integration Tests" | ||
name: Run Integration Tests | ||
|
||
darwin: | ||
runs-on: macos-latest | ||
env: | ||
CHILD_CONCURRENCY: "1" | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
steps: | ||
- uses: actions/checkout@v1 | ||
- uses: actions/setup-node@v1 | ||
with: | ||
node-version: 10 | ||
- run: yarn --frozen-lockfile | ||
name: Install Dependencies | ||
- run: yarn electron x64 | ||
name: Download Electron | ||
- run: yarn gulp hygiene --skip-tslint | ||
name: Run Hygiene Checks | ||
- run: yarn gulp tslint | ||
name: Run TSLint Checks | ||
- run: yarn monaco-compile-check | ||
name: Run Monaco Editor Checks | ||
- run: yarn compile | ||
name: Compile Sources | ||
- run: yarn download-builtin-extensions | ||
name: Download Built-in Extensions | ||
- run: ./scripts/test.sh --tfs "Unit Tests" | ||
name: Run Unit Tests | ||
- run: ./scripts/test-integration.sh --tfs "Integration Tests" | ||
name: Run Integration Tests |
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
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,5 +1,7 @@ | ||
{ | ||
"displayName": "Image Preview", | ||
"description": "Provides VS Code's built-in image preview", | ||
"webviewEditors.displayName": "Image Preview" | ||
"webviewEditors.displayName": "Image Preview", | ||
"command.zoomIn": "Zoom in", | ||
"command.zoomOut": "Zoom out" | ||
} |
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
Oops, something went wrong.