Skip to content

Commit 88ef0c7

Browse files
committed
fix pipeline
1 parent ce2c042 commit 88ef0c7

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

azure-devops/templates/socket.io-tpl.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ steps:
1111
pm2 start v2/v2-http.js
1212
pm2 start v2/v2-http-token.js
1313
displayName: Run socket.io server
14-
workingDirectory: $(Agent.BuildDirectory)/s/src/socket.io
14+
workingDirectory: $(Agent.BuildDirectory)/s/tests/socket.io
1515
- pwsh: $(Agent.BuildDirectory)/s/azure-devops/check-port.ps1
1616
displayName: Check ports of socket.io servers
1717
failOnStderr: true

azure-devops/test.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ stages:
1515
- task: DotNetCoreCLI@2
1616
displayName: Unit tests
1717
inputs:
18-
workingDirectory: $(Agent.BuildDirectory)/s/src/SocketIOClient.UnitTest
18+
workingDirectory: $(Agent.BuildDirectory)/s/tests/SocketIOClient.UnitTest
1919
command: test
2020
- job:
2121
displayName: Integration tests
@@ -24,7 +24,7 @@ stages:
2424
- task: DotNetCoreCLI@2
2525
displayName: Integration tests
2626
inputs:
27-
workingDirectory: $(Agent.BuildDirectory)/s/src/SocketIOClient.IntegrationTests
27+
workingDirectory: $(Agent.BuildDirectory)/s/tests/SocketIOClient.IntegrationTests
2828
command: test
2929
- stage: NET_Framework_Tests
3030
dependsOn: [ ]
@@ -37,12 +37,12 @@ stages:
3737
- template: templates/socket.io-tpl.yml
3838
- pwsh: dotnet restore
3939
displayName: dotnet restore
40-
workingDirectory: $(Agent.BuildDirectory)/s/src
40+
workingDirectory: $(Agent.BuildDirectory)/s
4141
- task: MSBuild@1
4242
inputs:
43-
solution: $(Agent.BuildDirectory)/s/src/socket.io-client-csharp.sln
43+
solution: $(Agent.BuildDirectory)/s/socket.io-client-csharp.sln
4444
restoreNugetPackages: true
4545
- task: VSTest@2
4646
inputs:
4747
testAssemblyVer2: SocketIOClient.IntegrationTests.Net472.dll
48-
searchFolder: $(Agent.BuildDirectory)/s/src/SocketIOClient.IntegrationTests.Net472/bin/Debug
48+
searchFolder: $(Agent.BuildDirectory)/s/tests/SocketIOClient.IntegrationTests.Net472/bin/Debug

0 commit comments

Comments
 (0)