|
1 | 1 | # LPub3D Raytracer-cui build actions
|
2 | 2 | # Trevor SANDY <[email protected]>
|
3 |
| -# Last Update: August 29, 2023 |
| 3 | +# Last Update: September 10, 2024 |
4 | 4 | #
|
5 | 5 | name: 'Build POV-Ray CLI for Windows Binary'
|
6 | 6 | description: 'Build POV-Ray CLI for Windows Binary'
|
@@ -47,25 +47,26 @@ inputs:
|
47 | 47 | runs:
|
48 | 48 | using: composite
|
49 | 49 | 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 }} |
51 | 69 | 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 |
| - } |
69 | 70 | $env:PovBuildDefs = 'POV_RAY_IS_AUTOBUILD=${{ inputs.pov-ray-is-autobuild }};'
|
70 | 71 | $env:PovBuildDefs += 'POV_RAY_BUILD_ID="${{ inputs.pov-ray-build-id }}";'
|
71 | 72 | $env:PovBuildDefs += 'VERSION_BASE="${{ inputs.version-base }}";'
|
|
79 | 80 | ${{ inputs.msbuild-options }} `
|
80 | 81 | windows/${{ inputs.solution }}/console.vcxproj `
|
81 | 82 | /clp:ErrorsOnly /nologo
|
| 83 | + shell: pwsh |
0 commit comments