aboutsummaryrefslogtreecommitdiffstats
path: root/.github/workflows/windows.yml
diff options
context:
space:
mode:
Diffstat (limited to '.github/workflows/windows.yml')
-rw-r--r--.github/workflows/windows.yml12
1 files changed, 2 insertions, 10 deletions
diff --git a/.github/workflows/windows.yml b/.github/workflows/windows.yml
index a914b1b120..e489a10734 100644
--- a/.github/workflows/windows.yml
+++ b/.github/workflows/windows.yml
@@ -24,20 +24,12 @@ jobs:
steps:
- name: Install libraries with vcpkg
run: |
- vcpkg --triplet x64-windows install %dependencies% || (
- sleep 4 && vcpkg --triplet x64-windows install %dependencies%
- ) || (
- sleep 25 && vcpkg --triplet x64-windows install %dependencies%
- )
+ vcpkg --triplet x64-windows install %dependencies%
env:
dependencies: openssl readline zlib
- name: Install libraries with chocolatey
run: |
- choco install winflexbison3 || (
- sleep 4 && choco install winflexbison3
- ) || (
- sleep 25 && choco install winflexbison3
- )
+ choco install winflexbison3
# Not using official actions/checkout because it's unstable and sometimes doesn't work for a fork.
- name: Checkout ruby/ruby
run: git clone --depth=50 https://github.com/ruby/ruby . && git reset --hard ${{ github.sha }}