tl;dr Trying to install the GnuPG
package on windows-latest
with choco install GnuPG
times out.
I would expect this GitHub Workflow:
name: main
on:
pull_request:
push:
jobs:
test:
runs-on: windows-latest
steps:
- name: Install GnuPG
run: |
choco install --verbose GnuPG
- name: Check GnuPG installation
run: gpg --version
To install the GnuPG
package on windows-latest
using Chocolately, but it stalls after a few minutes and eventually times out. The last few lines of the run log are:
VERBOSE: Importing alias 'Invoke-ChocolateyProcess'.
VERBOSE: Importing alias 'refreshenv'.
VERBOSE: Importing alias 'Remove-BinFile'.
VERBOSE: Importing alias 'Start-ChocolateyProcess'.
Installing gnupg...
And then nothing more.
You can see an example run and the twpayne/github-actions-chocolatey-test
GitHub repo contains a minimal workflow that reproduces this problem.
I need gpg version 2 (not version 1) installed for an integration test on Windows.
Am I doing something wrong? For info, I get the same timeout problem with the Gpg4win
and openssl
Chocolately packages, so it doesn’t seem to be package specific.