Skip to content

Commit

Permalink
Don't try to install Python modules in github action runner.
Browse files Browse the repository at this point in the history
  • Loading branch information
cwidisgroup committed Mar 21, 2024
1 parent 5395e67 commit c245702
Showing 1 changed file with 8 additions and 4 deletions.
12 changes: 8 additions & 4 deletions scripts/install-3rdparty-full-win1064.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -185,7 +185,11 @@ if($ok) {
#
# Install Python packages
#
Write-Output "cwipc_check install: python: cwipc packages: installing..."
& cwipc_pymodules_install.ps1
Write-Output "cwipc_check install: python: cwipc packages: All done."
Write-Output "cwipc_check install: python: cwipc packages: You can close this Powershell window."
if ($global:ghActionRunner) {
Write-Output "cwipc_check install: python: cwipc packages: skipping."
} else {
Write-Output "cwipc_check install: python: cwipc packages: installing..."
& cwipc_pymodules_install.ps1
Write-Output "cwipc_check install: python: cwipc packages: All done."
}
Write-Output "cwipc_check install: All done: You can close this Powershell window."

0 comments on commit c245702

Please sign in to comment.