File tree Expand file tree Collapse file tree 1 file changed +8
-17
lines changed Expand file tree Collapse file tree 1 file changed +8
-17
lines changed Original file line number Diff line number Diff line change @@ -97,25 +97,16 @@ jobs:
97
97
bundler : none
98
98
windows-toolchain : none
99
99
100
- - uses : actions/cache@0c45773b623bea8c8e75f6c82b208c3cf94ea4f9 # v4.0.2
101
- with :
102
- path : C:\vcpkg\downloads
103
- key : ${{ runner.os }}-vcpkg-download-${{ env.OS_VER }}-${{ github.sha }}
104
- restore-keys : |
105
- ${{ runner.os }}-vcpkg-download-${{ env.OS_VER }}-
106
- ${{ runner.os }}-vcpkg-download-
107
-
108
- - uses : actions/cache@0c45773b623bea8c8e75f6c82b208c3cf94ea4f9 # v4.0.2
109
- with :
110
- path : C:\vcpkg\installed
111
- key : ${{ runner.os }}-vcpkg-installed-${{ env.OS_VER }}-${{ github.sha }}
112
- restore-keys : |
113
- ${{ runner.os }}-vcpkg-installed-${{ env.OS_VER }}-
114
- ${{ runner.os }}-vcpkg-installed-
115
-
116
100
- name : Install libraries with vcpkg
117
101
run : |
118
- vcpkg --triplet x64-windows install gmp libffi libyaml openssl zlib
102
+ cd $env:VCPKG_INSTALLATION_ROOT
103
+ $uri = "https://github.com/ruby/setup-msys2-gcc/releases/download/msys2-gcc-pkgs/mswin.7z"
104
+ curl -L $uri -o $env:RUNNER_TEMP/mswin_temp.7z
105
+ &"C:\Program Files\7-Zip\7z" x $env:RUNNER_TEMP/mswin_temp.7z -aoa
106
+ echo "`n———————————— ./vcpkg list ————————————"
107
+ ./vcpkg list
108
+ shell : pwsh
109
+ timeout-minutes : 5
119
110
120
111
- name : Install libraries with scoop
121
112
run : |
You can’t perform that action at this time.
0 commit comments