Fix windows?

This commit is contained in:
lights0123 2020-09-26 19:36:40 -04:00
parent 0749f985df
commit cf0c8429fc
No known key found for this signature in database
GPG key ID: 28F315322E37972F
2 changed files with 23 additions and 2 deletions

View file

@ -15,6 +15,27 @@ jobs:
runs-on: ${{ matrix.platform }}
steps:
- uses: actions/checkout@v2
- name: Get yarn cache directory path
id: yarn-cache-dir-path
run: echo "::set-output name=dir::$(yarn cache dir)"
- uses: actions/cache@v2
id: yarn-cache
with:
path: |
${{ steps.yarn-cache-dir-path.outputs.dir }}
key: ${{ runner.os }}-yarn-${{ hashFiles('**/yarn.lock') }}
restore-keys: |
${{ runner.os }}-yarn-
- uses: actions/cache@v2
with:
path: |
~/.cargo/registry
~/.cargo/git
~/.cargo/bin
src-tauri/target
key: ${{ runner.os }}-cargo-${{ hashFiles('**/Cargo.lock') }}
restore-keys: |
${{ runner.os }}-cargo-
- name: setup node
uses: actions/setup-node@v1
with:

4
src-tauri/Cargo.lock generated
View file

@ -736,9 +736,9 @@ dependencies = [
[[package]]
name = "libnspire-sys"
version = "0.2.3"
version = "0.2.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "4dff025b6869a1f163254e00fb9250d0705a4a7b645c0ce9aa3a90e65cede9b5"
checksum = "a517591b98a38e9b471e2b141ac84d70bd55d626b9c0b57315bc3f1b538e7bf4"
dependencies = [
"cc",
"globwalk",