Skip to content

Commit

Permalink
ci: Add Run Installer
Browse files Browse the repository at this point in the history
  • Loading branch information
vasylskorych committed Feb 25, 2024
1 parent 9c1e297 commit c0ddce0
Showing 1 changed file with 12 additions and 10 deletions.
22 changes: 12 additions & 10 deletions .github/workflows/build_windows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -376,23 +376,25 @@ jobs:
name: docs-artifact
path: ${{github.workspace}}/install/windows

# - name: Build x86
# working-directory: ${{github.workspace}}
# env:
# QtToolsPath: ${{env.Qt5_DIR}}/../${{env.QT_VS_VERSION}}/bin
# QtMsBuild: ${{github.workspace}}/ExternalLibraries/qtvsaddin/QtMsBuild
# run: |
# msbuild -maxCpuCount -verbosity:minimal -property:Configuration=Debug -property:Platform=Win32 ${{env.SOLUTION_FILE_PATH}}/${{env.SOLUTION_FILE_NAME}}
# msbuild -maxCpuCount -verbosity:minimal -property:Configuration=Release -property:Platform=Win32 ${{env.SOLUTION_FILE_PATH}}/${{env.SOLUTION_FILE_NAME}}

# - name: Build x86
# working-directory: ${{github.workspace}}
# env:
# QtToolsPath: ${{env.Qt5_DIR}}/../${{env.QT_VS_VERSION}}/bin
# QtMsBuild: ${{github.workspace}}/ExternalLibraries/qtvsaddin/QtMsBuild
# run: |
# msbuild -maxCpuCount -verbosity:minimal -property:Configuration=Debug -property:Platform=Win32 ${{env.SOLUTION_FILE_PATH}}/${{env.SOLUTION_FILE_NAME}}
# msbuild -maxCpuCount -verbosity:minimal -property:Configuration=Release -property:Platform=Win32 ${{env.SOLUTION_FILE_PATH}}/${{env.SOLUTION_FILE_NAME}}
#
- name: Build x64
working-directory: ${{github.workspace}}
env:
QtToolsPath: ${{env.Qt5_DIR}}/../${{env.QT_VS_VERSION}}_64/bin
QtMsBuild: ${{github.workspace}}/ExternalLibraries/qtvsaddin/QtMsBuild
run: |
msbuild -maxCpuCount -verbosity:minimal -property:Configuration=Debug -property:Platform=x64 ${{env.SOLUTION_FILE_PATH}}/${{env.SOLUTION_FILE_NAME}}
# run: |
# msbuild -maxCpuCount -verbosity:minimal -property:Configuration=Debug -property:Platform=x64 ${{env.SOLUTION_FILE_PATH}}/${{env.SOLUTION_FILE_NAME}}
msbuild -maxCpuCount -verbosity:minimal -property:Configuration=Release -property:Platform=x64 ${{env.SOLUTION_FILE_PATH}}/${{env.SOLUTION_FILE_NAME}}
# msbuild -maxCpuCount -verbosity:minimal -property:Configuration=Release -property:Platform=x64 ${{env.SOLUTION_FILE_PATH}}/${{env.SOLUTION_FILE_NAME}}

- name: Build Installer
working-directory: ${{github.workspace}}
Expand Down

0 comments on commit c0ddce0

Please sign in to comment.