Skip to content

Commit

Permalink
workflows bugfix executable filename
Browse files Browse the repository at this point in the history
  • Loading branch information
silverqx committed Aug 12, 2024
1 parent 1437d70 commit 9ecf06f
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/vcpkg-windows-drivers.yml
Original file line number Diff line number Diff line change
Expand Up @@ -328,7 +328,7 @@ jobs:
- name: HelloWorld print linker version (${{ env.HelloWorldVcpkManifestBuildName }})
working-directory: ${{ env.HelloWorldVcpkManifestBuildTree }}
run: |
dumpbin.exe /HEADERS .\HelloWorld | Select-String -SimpleMatch 'linker version'
dumpbin.exe /HEADERS .\HelloWorld.exe | Select-String -SimpleMatch 'linker version'
- name: HelloWorld-TinyDrivers execute (MySQL) 🏁
working-directory: ${{ env.HelloWorldVcpkManifestBuildTree }}
Expand Down Expand Up @@ -565,7 +565,7 @@ jobs:
- name: HelloWorld print linker version (${{ env.HelloWorldFetchContentBuildName }})
working-directory: ${{ env.HelloWorldFetchContentBuildTree }}
run: |
dumpbin.exe /HEADERS .\HelloWorld | Select-String -SimpleMatch 'linker version'
dumpbin.exe /HEADERS .\HelloWorld.exe | Select-String -SimpleMatch 'linker version'
- name: HelloWorld-TinyDrivers execute (MySQL) 🏁
working-directory: ../HelloWorld-TinyDrivers-FetchContent-Install/${{ matrix.build-type.name }}/bin
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/vcpkg-windows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -267,7 +267,7 @@ jobs:
- name: HelloWorld print linker version (${{ env.HelloWorldVcpkManifestBuildName }})
working-directory: ${{ env.HelloWorldVcpkManifestBuildTree }}
run: |
dumpbin.exe /HEADERS .\HelloWorld | Select-String -SimpleMatch 'linker version'
dumpbin.exe /HEADERS .\HelloWorld.exe | Select-String -SimpleMatch 'linker version'
# Related issue: https://github.com/microsoft/vcpkg/issues/33539
- name: HelloWorld finish VCPKG_APPLOCAL_DEPS (Debug)
Expand Down Expand Up @@ -508,7 +508,7 @@ jobs:
- name: HelloWorld print linker version (${{ env.HelloWorldFetchContentBuildName }})
working-directory: ${{ env.HelloWorldFetchContentBuildTree }}
run: |
dumpbin.exe /HEADERS .\HelloWorld | Select-String -SimpleMatch 'linker version'
dumpbin.exe /HEADERS .\HelloWorld.exe | Select-String -SimpleMatch 'linker version'
- name: HelloWorld execute (SQLite) 🏁
working-directory: ../HelloWorld-FetchContent-Install/${{ matrix.build-type.name }}/bin
Expand Down

0 comments on commit 9ecf06f

Please sign in to comment.