Skip to content

Commit 645d649

Browse files
committed
Win: refactor windows_build action
1 parent 0752884 commit 645d649

File tree

1 file changed

+21
-19
lines changed

1 file changed

+21
-19
lines changed

.github/actions/windows_build/action.yml

+21-19
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# LPub3D Raytracer-cui build actions
22
# Trevor SANDY <[email protected]>
3-
# Last Update: August 29, 2023
3+
# Last Update: September 10, 2024
44
#
55
name: 'Build POV-Ray CLI for Windows Binary'
66
description: 'Build POV-Ray CLI for Windows Binary'
@@ -47,25 +47,26 @@ inputs:
4747
runs:
4848
using: composite
4949
steps:
50-
- shell: pwsh
50+
- name: VC v140 Build Tools
51+
if: ${{ inputs.platform == 'Win32' }}
52+
run: |
53+
Set-Location "C:\Program Files (x86)\Microsoft Visual Studio\Installer\"
54+
$InstallPath = "C:\Program Files\Microsoft Visual Studio\2022\Enterprise"
55+
$ComponentsToAdd= @("Microsoft.VisualStudio.Component.VC.140")
56+
[string]$WorkloadArgs = $ComponentsToAdd | ForEach-Object {" --add " + $_}
57+
$Arguments = ('/c', "vs_installer.exe", 'modify', '--installPath', "`"$InstallPath`"",$WorkloadArgs, '--quiet', '--norestart', '--nocache')
58+
# should be run twice
59+
$Process = Start-Process -FilePath cmd.exe -ArgumentList $Arguments -Wait -PassThru -WindowStyle Hidden
60+
$Process = Start-Process -FilePath cmd.exe -ArgumentList $Arguments -Wait -PassThru -WindowStyle Hidden
61+
shell: pwsh
62+
- name: Windows 8.1 SDK
63+
if: ${{ inputs.platform == 'Win32' }}
64+
run: |
65+
Invoke-WebRequest -Method Get -Uri https://go.microsoft.com/fwlink/p/?LinkId=323507 -OutFile sdksetup.exe -UseBasicParsing
66+
Start-Process -Wait sdksetup.exe -ArgumentList "/q", "/norestart", "/features", "OptionId.WindowsDesktopSoftwareDevelopmentKit"
67+
shell: pwsh
68+
- name: Build ${{ inputs.platform }}
5169
run: |
52-
if ('${{ inputs.platform }}' -eq 'Win32')
53-
{
54-
echo "::group::Win32 MSVS 2015 VC v140 Build Tools"
55-
Set-Location "C:\Program Files (x86)\Microsoft Visual Studio\Installer\"
56-
$InstallPath = "C:\Program Files\Microsoft Visual Studio\2022\Enterprise"
57-
$ComponentsToAdd= @("Microsoft.VisualStudio.Component.VC.140")
58-
[string]$WorkloadArgs = $ComponentsToAdd | ForEach-Object {" --add " + $_}
59-
$Arguments = ('/c', "vs_installer.exe", 'modify', '--installPath', "`"$InstallPath`"",$WorkloadArgs, '--quiet', '--norestart', '--nocache')
60-
# should be run twice
61-
$Process = Start-Process -FilePath cmd.exe -ArgumentList $Arguments -Wait -PassThru -WindowStyle Hidden
62-
$Process = Start-Process -FilePath cmd.exe -ArgumentList $Arguments -Wait -PassThru -WindowStyle Hidden
63-
echo "::endgroup::"
64-
echo "::group::Win32 Windows 8.1 SDK"
65-
Invoke-WebRequest -Method Get -Uri https://go.microsoft.com/fwlink/p/?LinkId=323507 -OutFile sdksetup.exe -UseBasicParsing
66-
Start-Process -Wait sdksetup.exe -ArgumentList "/q", "/norestart", "/features", "OptionId.WindowsDesktopSoftwareDevelopmentKit" # Optional feature: , "OptionId.NetFxSoftwareDevelopmentKit"
67-
echo "::endgroup::"
68-
}
6970
$env:PovBuildDefs = 'POV_RAY_IS_AUTOBUILD=${{ inputs.pov-ray-is-autobuild }};'
7071
$env:PovBuildDefs += 'POV_RAY_BUILD_ID="${{ inputs.pov-ray-build-id }}";'
7172
$env:PovBuildDefs += 'VERSION_BASE="${{ inputs.version-base }}";'
@@ -79,3 +80,4 @@ runs:
7980
${{ inputs.msbuild-options }} `
8081
windows/${{ inputs.solution }}/console.vcxproj `
8182
/clp:ErrorsOnly /nologo
83+
shell: pwsh

0 commit comments

Comments
 (0)