update windows gh workflow

This commit is contained in:
Nikolay Kim 2020-04-09 12:56:28 +06:00
parent 2f9412866d
commit da4ab9e046

View file

@ -27,11 +27,34 @@ jobs:
profile: minimal profile: minimal
override: true override: true
- name: Generate Cargo.lock
uses: actions-rs/cargo@v1
with:
command: generate-lockfile
- name: Cache vcpkg - name: Cache vcpkg
uses: actions/cache@v1 uses: actions/cache@v1
with: with:
path: C:\vcpkg\installed\x64-windows\ path: C:\vcpkg\installed\x64-windows\
key: x86_64-pc-windows-msvc-openssl key: x86_64-pc-windows-msvc-openssl-${{ hashFiles('**/Cargo.lock') }}
- name: Cache cargo registry
uses: actions/cache@v1
with:
path: ~/.cargo/registry
key: ${{ matrix.version }}-x86_64-pc-windows-msvc-cargo-registry-trimmed-${{ hashFiles('**/Cargo.lock') }}
- name: Cache cargo index
uses: actions/cache@v1
with:
path: ~/.cargo/git
key: ${{ matrix.version }}-x86_64-pc-windows-msvc-cargo-index-trimmed-${{ hashFiles('**/Cargo.lock') }}
- name: Cache cargo build
uses: actions/cache@v1
with:
path: target
key: ${{ matrix.version }}-x86_64-unknown-linux-gnu-cargo-build-trimmed-${{ hashFiles('**/Cargo.lock') }}
- name: Install OpenSSL - name: Install OpenSSL
run: | run: |