blob: 333e43f65fd45c40553e44bbdce75565237d0c48 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
|
name: Install Cygwin
description: Install Cygwin & packages
inputs:
platform:
description: Target platform
required: false
default: x64
install-dir:
description: Installation directory
required: false
default: C:\tools\cygwin
packages:
description: Packages to install, separated by a space
required: false
env:
description: Value to set as the CYGWIN environment variable
required: false
symlinks-to-hardlinks:
description: Convert symlinks in /usr/bin to hardlinks
required: false
default: 0
runs:
using: composite
steps:
- run: |
New-Variable os -Value ('${{ runner.os }}') -Option Constant
New-Variable windows_host -Value ($os -eq 'Windows') -Option Constant
if (!$windows_host) {
throw "Sorry, installing Cygwin is unsupported on $os"
}
shell: pwsh
- run: |
echo 'CYGWIN=${{ inputs.env }}' >> $env:GITHUB_ENV
shell: pwsh
- run: |
New-Variable x64 -Value ('${{ inputs.platform }}' -eq 'x64') -Option Constant
New-Variable install_dir -Value '${{ inputs.install-dir }}' -Option Constant
New-Variable packages -Value '${{ inputs.packages }}' -Option Constant
function Locate-Choco {
$path = Get-Command 'choco' -ErrorAction SilentlyContinue
if ($path) {
$path.Path
} else {
Join-Path ${env:ProgramData} 'chocolatey' 'bin' 'choco'
}
}
$choco = Locate-Choco
$choco_params = @(
'install',
'-y',
'--no-progress',
'--params', "/InstallDir:$install_dir"
)
if (!$x64) {
$choco_params += '--x86'
}
$choco_params += 'cygwin'
# Assuming that Cygwin is not installed when this is run.
& $choco $choco_params
# /usr/bin is really just /bin on Cygwin.
echo (Join-Path $install_dir bin) >> $env:GITHUB_PATH
echo (Join-Path $install_dir usr local bin) >> $env:GITHUB_PATH
$pkg_list = $packages.Split(' ', [System.StringSplitOptions]::RemoveEmptyEntries)
if ($pkg_list.Count -gt 0) {
& $choco install -y --no-progress --source=cygwin $pkg_list
}
shell: pwsh
- run: |
New-Variable install_dir -Value '${{ inputs.install-dir }}' -Option Constant
New-Variable symlinks_to_hardlinks -Value ('${{ inputs.symlinks-to-hardlinks }}' -eq '1') -Option Constant
if ($symlinks_to_hardlinks) {
New-Variable bash -Value (Join-Path $install_dir bin bash.exe) -Option Constant
echo @'
while IFS= read -d '' -r link_path; do
dest_path="$( readlink --canonicalize-existing -- "$link_path" )"
dest_ext=".${dest_path##*.}"
[ "$dest_ext" == ".$dest_path" ] && dest_ext=
link_ext=".${link_path##*.}"
[ "$link_ext" == ".$link_path" ] && link_ext=
echo "Removing symlink $link_path" && rm -f -- "$link_path"
[ "$link_ext" != "$dest_ext" ] && echo "${PATHEXT//\;/
}" | grep -q --ignore-case --line-regexp -F -- "$dest_ext" && link_path="$link_path$dest_ext"
echo "Creating hardlink $link_path -> $dest_path" && ln -- "$dest_path" "$link_path"
done < <( find /usr/bin -type l -print0 )
'@ | & $bash --login -o errexit -o nounset -o pipefail -o igncr
}
shell: pwsh
branding:
icon: star
color: green
|