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