Skip to content

Commit

Permalink
Properly adjusting filenames.
Browse files Browse the repository at this point in the history
  • Loading branch information
nicolasnoble committed Jun 8, 2021
1 parent b8d888f commit 8def877
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 2 deletions.
10 changes: 9 additions & 1 deletion azure-pipelines-win32.yml
Original file line number Diff line number Diff line change
Expand Up @@ -50,9 +50,17 @@ steps:
maximumCpuCount: false
configuration: '$(buildConfiguration)'

- task: PowerShell@2
inputs:
targetType: 'InlineScript'
script: |
Rename-Item -Path "vsprojects/Release/pcsx-redux.exe" -NewName "pcsx-redux.main"
Rename-Item -Path "vsprojects/Release/pcsx-wrapper.exe" -NewName "pcsx-redux.exe"
- task: CopyFiles@2
inputs:
Contents: |
vsprojects/Release/pcsx-redux.main
vsprojects/Release/pcsx-redux.exe
vsprojects/Release/*.dll
TargetFolder: '$(build.artifactStagingDirectory)/binaries'
Expand All @@ -63,8 +71,8 @@ steps:
testAssemblyVer2: |
**\*.exe
!**\pcsxrunner.exe
!**\pcsx-redux.main
!**\pcsx-redux.exe
!**\pcsx-wrapper.exe
!**\psyq-obj-parser.exe
!**\ps1-packer.exe
!third_party\**\*.exe
Expand Down
10 changes: 9 additions & 1 deletion azure-pipelines.yml
Original file line number Diff line number Diff line change
Expand Up @@ -50,9 +50,17 @@ steps:
maximumCpuCount: false
configuration: '$(buildConfiguration)'

- task: PowerShell@2
inputs:
targetType: 'InlineScript'
script: |
Rename-Item -Path "vsprojects/x64/Release/pcsx-redux.exe" -NewName "pcsx-redux.main"
Rename-Item -Path "vsprojects/x64/Release/pcsx-wrapper.exe" -NewName "pcsx-redux.exe"
- task: CopyFiles@2
inputs:
Contents: |
vsprojects/x64/Release/pcsx-redux.main
vsprojects/x64/Release/pcsx-redux.exe
vsprojects/x64/Release/*.dll
TargetFolder: '$(build.artifactStagingDirectory)/binaries'
Expand All @@ -63,8 +71,8 @@ steps:
testAssemblyVer2: |
**\*.exe
!**\pcsxrunner.exe
!**\pcsx-redux.main
!**\pcsx-redux.exe
!**\pcsx-wrapper.exe
!**\psyq-obj-parser.exe
!**\ps1-packer.exe
!third_party\**\*.exe
Expand Down

0 comments on commit 8def877

Please sign in to comment.