Skip to content

Commit 6d0fb73

Browse files
committed
Quick fix: Simplify devBuilds.yml
- remove an excess build step
1 parent ba33992 commit 6d0fb73

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.azure/pipelines/devBuilds.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -31,12 +31,12 @@ stages:
3131
steps:
3232
- script: git submodule init
3333
- script: git submodule update --recursive
34-
- script: cd ./src/Components
3534
- script: ./build.cmd
3635
-ci
3736
-arch x64
3837
/bl:artifacts/log/build.components.x64.binlog
3938
displayName: Build x64
39+
workingDirectory: ./src/Components
4040
artifacts:
4141
- name: Windows_Logs
4242
path: artifacts/log/
@@ -56,12 +56,12 @@ stages:
5656
steps:
5757
- script: git submodule init
5858
- script: git submodule update --recursive
59-
- script: cd ./src/Servers
6059
- script: ./build.cmd
6160
-ci
6261
-arch x64
6362
/bl:artifacts/log/build.servers.x64.binlog
6463
displayName: Build x64
64+
workingDirectory: ./src/Servers
6565
artifacts:
6666
- name: Windows_Logs
6767
path: artifacts/log/
@@ -81,12 +81,12 @@ stages:
8181
steps:
8282
- script: git submodule init
8383
- script: git submodule update --recursive
84-
- script: cd ./src/ProjectTemplates
8584
- script: ./build.cmd
8685
-ci
8786
-arch x64
8887
/bl:artifacts/log/build.projectTemplates.x64.binlog
8988
displayName: Build x64
89+
workingDirectory: ./src/ProjectTemplates
9090
artifacts:
9191
- name: Windows_Logs
9292
path: artifacts/log/

0 commit comments

Comments
 (0)