mirror of
https://github.com/actions/runner-images.git
synced 2025-12-18 15:57:17 +00:00
[macOS] install tcl-tk explicitly (#5014)
This commit is contained in:
@@ -532,6 +532,11 @@ function Get-LibXextVersion {
|
||||
return "libXext $libXextVersion"
|
||||
}
|
||||
|
||||
function Get-TclTkVersion {
|
||||
$tcltkVersion = (brew info tcl-tk)[0] | Take-Part -Part 2
|
||||
return "Tcl/Tk $tcltkVersion"
|
||||
}
|
||||
|
||||
function Build-PackageManagementEnvironmentTable {
|
||||
return @(
|
||||
@{
|
||||
|
||||
@@ -288,7 +288,8 @@ $markdown += New-MDHeader "Miscellaneous" -Level 3
|
||||
$markdown += New-MDList -Style Unordered -Lines (@(
|
||||
(Get-ZlibVersion),
|
||||
(Get-LibXextVersion),
|
||||
(Get-LibXftVersion)
|
||||
(Get-LibXftVersion),
|
||||
(Get-TclTkVersion)
|
||||
) | Sort-Object
|
||||
)
|
||||
|
||||
|
||||
@@ -227,7 +227,8 @@
|
||||
"zstd",
|
||||
"zlib",
|
||||
"libxext",
|
||||
"libxft"
|
||||
"libxft",
|
||||
"tcl-tk"
|
||||
],
|
||||
"cask_packages": [
|
||||
"julia",
|
||||
|
||||
@@ -195,6 +195,7 @@
|
||||
"zlib",
|
||||
"libxext",
|
||||
"libxft",
|
||||
"tcl-tk",
|
||||
"r"
|
||||
],
|
||||
"cask_packages": [
|
||||
|
||||
@@ -111,6 +111,7 @@
|
||||
"zlib",
|
||||
"libxext",
|
||||
"libxft",
|
||||
"tcl-tk",
|
||||
"r"
|
||||
],
|
||||
"cask_packages": [
|
||||
|
||||
Reference in New Issue
Block a user