mirror of
https://github.com/meilisearch/meilisearch.git
synced 2024-11-22 10:07:40 +08:00
TMP: check windows free disk space
This commit is contained in:
parent
ca006e38ec
commit
40215bfec3
18
.github/workflows/test-suite.yml
vendored
18
.github/workflows/test-suite.yml
vendored
@ -56,6 +56,12 @@ jobs:
|
|||||||
matrix:
|
matrix:
|
||||||
os: [macos-12, windows-2022]
|
os: [macos-12, windows-2022]
|
||||||
steps:
|
steps:
|
||||||
|
- name: Check free disk space on C
|
||||||
|
run: |
|
||||||
|
fsutil volume diskfree c:
|
||||||
|
- name: Check free disk space on D
|
||||||
|
run: |
|
||||||
|
fsutil volume diskfree d:
|
||||||
- uses: actions/checkout@v3
|
- uses: actions/checkout@v3
|
||||||
- name: Cache dependencies
|
- name: Cache dependencies
|
||||||
uses: Swatinem/rust-cache@v2.7.1
|
uses: Swatinem/rust-cache@v2.7.1
|
||||||
@ -63,11 +69,23 @@ jobs:
|
|||||||
with:
|
with:
|
||||||
toolchain: stable
|
toolchain: stable
|
||||||
override: true
|
override: true
|
||||||
|
- name: Check free disk space on C
|
||||||
|
run: |
|
||||||
|
fsutil volume diskfree c:
|
||||||
|
- name: Check free disk space on D
|
||||||
|
run: |
|
||||||
|
fsutil volume diskfree d:
|
||||||
- name: Run cargo check without any default features
|
- name: Run cargo check without any default features
|
||||||
uses: actions-rs/cargo@v1
|
uses: actions-rs/cargo@v1
|
||||||
with:
|
with:
|
||||||
command: build
|
command: build
|
||||||
args: --locked --release --no-default-features --all
|
args: --locked --release --no-default-features --all
|
||||||
|
- name: Check free disk space on C
|
||||||
|
run: |
|
||||||
|
fsutil volume diskfree c:
|
||||||
|
- name: Check free disk space on D
|
||||||
|
run: |
|
||||||
|
fsutil volume diskfree d:
|
||||||
- name: Run cargo test
|
- name: Run cargo test
|
||||||
uses: actions-rs/cargo@v1
|
uses: actions-rs/cargo@v1
|
||||||
with:
|
with:
|
||||||
|
Loading…
Reference in New Issue
Block a user