Skip to content

Commit 420edab

Browse files
committed
rename tfs to azure-pipelines
1 parent 03dd3dc commit 420edab

24 files changed

Lines changed: 43 additions & 43 deletions

azure-pipelines.yml

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
jobs:
2+
- job: Windows
3+
pool:
4+
vmImage: VS2017-Win2016
5+
steps:
6+
- template: build/azure-pipelines/win32/continuous-build-win32.yml
7+
8+
- job: Linux
9+
pool:
10+
vmImage: 'Ubuntu-16.04'
11+
steps:
12+
- template: build/azure-pipelines/linux/continuous-build-linux.yml
13+
14+
- job: macOS
15+
pool:
16+
vmImage: macOS 10.13
17+
steps:
18+
- template: build/azure-pipelines/darwin/continuous-build-darwin.yml
File renamed without changes.
File renamed without changes.

build/tfs/darwin/product-build-darwin.yml renamed to build/azure-pipelines/darwin/product-build-darwin.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ steps:
1515
yarn monaco-compile-check
1616
yarn strict-null-check
1717
VSCODE_MIXIN_PASSWORD="$(VSCODE_MIXIN_PASSWORD)" yarn gulp -- mixin
18-
node build/tfs/common/installDistro.js
18+
node build/azure-pipelines/common/installDistro.js
1919
node build/lib/builtInExtensions.js
2020
displayName: Prepare build
2121

@@ -69,7 +69,7 @@ steps:
6969
AZURE_DOCUMENTDB_MASTERKEY="$(AZURE_DOCUMENTDB_MASTERKEY)" \
7070
AZURE_STORAGE_ACCESS_KEY_2="$(AZURE_STORAGE_ACCESS_KEY_2)" \
7171
MOONCAKE_STORAGE_ACCESS_KEY="$(MOONCAKE_STORAGE_ACCESS_KEY)" \
72-
node build/tfs/common/publish.js \
72+
node build/azure-pipelines/common/publish.js \
7373
"$(VSCODE_QUALITY)" \
7474
darwin \
7575
archive \
@@ -79,7 +79,7 @@ steps:
7979
../VSCode-darwin.zip
8080
8181
# publish hockeyapp symbols
82-
node build/tfs/common/symbols.js "$(VSCODE_MIXIN_PASSWORD)" "$(VSCODE_HOCKEYAPP_TOKEN)" "$(VSCODE_ARCH)" "$(VSCODE_HOCKEYAPP_ID_MACOS)"
82+
node build/azure-pipelines/common/symbols.js "$(VSCODE_MIXIN_PASSWORD)" "$(VSCODE_HOCKEYAPP_TOKEN)" "$(VSCODE_ARCH)" "$(VSCODE_HOCKEYAPP_ID_MACOS)"
8383
8484
# upload configuration
8585
AZURE_STORAGE_ACCESS_KEY="$(AZURE_STORAGE_ACCESS_KEY)" \

build/tfs/linux/continuous-build-linux.yml renamed to build/azure-pipelines/linux/continuous-build-linux.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ steps:
33
set -e
44
sudo apt-get update
55
sudo apt-get install -y libxkbfile-dev pkg-config libsecret-1-dev libxss1 libgconf-2-4 dbus xvfb libgtk-3-0
6-
sudo cp build/tfs/linux/xvfb.init /etc/init.d/xvfb
6+
sudo cp build/azure-pipelines/linux/xvfb.init /etc/init.d/xvfb
77
sudo chmod +x /etc/init.d/xvfb
88
sudo update-rc.d xvfb defaults
99
sudo service xvfb start
File renamed without changes.

0 commit comments

Comments
 (0)