diff options
author | Egor Tensin <Egor.Tensin@gmail.com> | 2023-01-01 22:10:07 +0100 |
---|---|---|
committer | Egor Tensin <Egor.Tensin@gmail.com> | 2023-01-01 22:10:07 +0100 |
commit | 1987828d74feef27fc743075124f4c1ea1a66aa6 (patch) | |
tree | 3fa7612978ebc8e2f87f48d7307957300e4fe195 /action.yml | |
parent | downgrade Chocolatey (diff) | |
download | setup-cygwin-1987828d74feef27fc743075124f4c1ea1a66aa6.tar.gz setup-cygwin-1987828d74feef27fc743075124f4c1ea1a66aa6.zip |
x86 is no longer supported
Neither by Chocolatey nor by (according to Chocolatey package authors)
the upstream.
Diffstat (limited to 'action.yml')
-rw-r--r-- | action.yml | 8 |
1 files changed, 0 insertions, 8 deletions
@@ -2,10 +2,6 @@ name: Install Cygwin description: Install Cygwin & packages inputs: - platform: - description: Target platform - required: false - default: x64 install-dir: description: Installation directory required: false @@ -38,7 +34,6 @@ runs: 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 @@ -65,9 +60,6 @@ runs: '--no-progress', "--package-parameters='/InstallDir:$install_dir'" ) - if (!$x64) { - $choco_params += '--x86' - } # Assuming that Cygwin is not installed when this is run. & $choco $choco_params |