Add vcredist

master
Evil Eye 2 weeks ago
parent fe5c9078ca
commit a1f736d765

@ -116,7 +116,9 @@ jobs:
- name: Ensure DLLs end up in the build dir - name: Ensure DLLs end up in the build dir
if: ${{ inputs.package }} if: ${{ inputs.package }}
run: echo "dlldir=${{ github.workspace }}/build" >> $env:GITHUB_ENV run: |
cp "${{ env.VCToolsRedistDir }}/vc_redist.x64.exe" "${{ github.workspace }}/build"
echo "dlldir=${{ github.workspace }}/build" >> $env:GITHUB_ENV
- name: Copy missing DLLs - name: Copy missing DLLs
run: | run: |
@ -147,7 +149,7 @@ jobs:
if: ${{ inputs.package }} if: ${{ inputs.package }}
run: | run: |
cpack --config "${{ github.workspace }}/build/CPackConfig.cmake" -B "${{ github.workspace }}/install" cpack --config "${{ github.workspace }}/build/CPackConfig.cmake" -B "${{ github.workspace }}/install"
rm -r -f "${{ github.workspace }}/install/_CPack_Packages" rm -r -Force "${{ github.workspace }}/install/_CPack_Packages"
- name: Move pdb files - name: Move pdb files
run: | run: |

Loading…
Cancel
Save