summaryrefslogtreecommitdiff
path: root/.github
diff options
context:
space:
mode:
authorNobuyoshi Nakada <nobu@ruby-lang.org>2020-08-01 17:51:42 +0900
committerNobuyoshi Nakada <nobu@ruby-lang.org>2020-08-01 19:02:41 +0900
commitb6175c9e4fe25b978252d8998fe791d65d998fc5 (patch)
tree8d5f4e11fa822617a644b257e0146cee4640d6cc /.github
parentbf758ef8b4e2895bf71a611a7ab2a4f236e260ea (diff)
mswin build - install src zlib files after checkout
actions/checkout deletes the contents of the source directory.
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/windows.yml10
1 files changed, 5 insertions, 5 deletions
diff --git a/.github/workflows/windows.yml b/.github/workflows/windows.yml
index 16f663b969..6bc0fab387 100644
--- a/.github/workflows/windows.yml
+++ b/.github/workflows/windows.yml
@@ -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