1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00

mswin build - install src zlib files after checkout

actions/checkout deletes the contents of the source directory.
This commit is contained in:
Nobuyoshi Nakada 2020-08-01 17:51:42 +09:00
parent bf758ef8b4
commit b6175c9e4f
No known key found for this signature in database
GPG key ID: 7CD2805BFA3770C6

View file

@ -23,11 +23,6 @@ jobs:
- name: Install libraries with vcpkg
run: |
vcpkg --triplet x64-windows install readline
- name: zlib
run: |
$zlib = 'zlib1211.zip'
curl -fsSL -o $zlib --retry 10 https://zlib.net/$zlib
&'C:\Program Files\7-Zip\7z.exe' x -osrc/ext/zlib $zlib
- uses: actions/cache@v2
with:
path: C:\Users\runneradmin\AppData\Local\Temp\chocolatey
@ -47,6 +42,11 @@ jobs:
- run: ./src/tool/actions-commit-info.sh
shell: bash
id: commit_info
- name: Install zlib
run: |
$zlib = 'zlib1211.zip'
curl -fsSL -o $zlib --retry 10 https://zlib.net/$zlib
&'C:\Program Files\7-Zip\7z.exe' x -osrc/ext/zlib $zlib
- run: md build
shell: cmd
- name: Configure