From 4223c518386a5a3ed37c708fcf5b688642e7fe44 Mon Sep 17 00:00:00 2001 From: Greg Sadetsky Date: Tue, 24 Jan 2023 15:24:09 -0500 Subject: [PATCH 1/4] Add image hyperlink in README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 0219771c4..40125674f 100644 --- a/README.md +++ b/README.md @@ -68,7 +68,7 @@ Install one of our SDKs in your project for seamless integration between Meilise Take a look at the complete [Meilisearch integration list](https://docs.meilisearch.com/learn/what_is_meilisearch/sdks.html). -![Logos belonging to different languages and frameworks supported by Meilisearch, including React, Ruby on Rails, Go, Rust, and PHP](assets/integrations.png) +[![Logos belonging to different languages and frameworks supported by Meilisearch, including React, Ruby on Rails, Go, Rust, and PHP](assets/integrations.png)](https://docs.meilisearch.com/learn/what_is_meilisearch/sdks.html) ## ⚙️ Advanced usage From ff6b8dfac4fce4a5f024c7194a58e794eb5503e9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Cl=C3=A9mentine=20Urquizar=20-=20curqui?= Date: Wed, 25 Jan 2023 16:24:04 +0100 Subject: [PATCH 2/4] Remove cache from Windows and macOs CIs --- .github/workflows/rust.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/rust.yml b/.github/workflows/rust.yml index f88379e25..a3772f459 100644 --- a/.github/workflows/rust.yml +++ b/.github/workflows/rust.yml @@ -53,8 +53,8 @@ jobs: os: [macos-12, windows-2022] steps: - uses: actions/checkout@v3 - - name: Cache dependencies - uses: Swatinem/rust-cache@v2.2.0 +# - name: Cache dependencies +# uses: Swatinem/rust-cache@v2.2.0 - name: Run cargo check without any default features uses: actions-rs/cargo@v1 with: From 9c3830a19c668485aca45bb10687cbc13167e8de Mon Sep 17 00:00:00 2001 From: curquiza Date: Wed, 25 Jan 2023 16:34:56 +0100 Subject: [PATCH 3/4] Remove cache everywhere --- .github/workflows/rust.yml | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/.github/workflows/rust.yml b/.github/workflows/rust.yml index a3772f459..99e48b416 100644 --- a/.github/workflows/rust.yml +++ b/.github/workflows/rust.yml @@ -31,8 +31,8 @@ jobs: with: toolchain: stable override: true - - name: Cache dependencies - uses: Swatinem/rust-cache@v2.2.0 + # - name: Cache dependencies + # uses: Swatinem/rust-cache@v2.2.0 - name: Run cargo check without any default features uses: actions-rs/cargo@v1 with: @@ -83,8 +83,8 @@ jobs: with: toolchain: stable override: true - - name: Cache dependencies - uses: Swatinem/rust-cache@v2.2.0 + # - name: Cache dependencies + # uses: Swatinem/rust-cache@v2.2.0 - name: Run tests in debug uses: actions-rs/cargo@v1 with: @@ -102,8 +102,8 @@ jobs: toolchain: stable override: true components: clippy - - name: Cache dependencies - uses: Swatinem/rust-cache@v2.2.0 + # - name: Cache dependencies + # uses: Swatinem/rust-cache@v2.2.0 - name: Run cargo clippy uses: actions-rs/cargo@v1 with: @@ -121,8 +121,8 @@ jobs: toolchain: nightly override: true components: rustfmt - - name: Cache dependencies - uses: Swatinem/rust-cache@v2.2.0 + # - name: Cache dependencies + # uses: Swatinem/rust-cache@v2.2.0 - name: Run cargo fmt # Since we never ran the `build.rs` script in the benchmark directory we are missing one auto-generated import file. # Since we want to trigger (and fail) this action as fast as possible, instead of building the benchmark crate From 48dabd27ea534333a9f033147bf62eb5bbfd2064 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Cl=C3=A9mentine=20Urquizar=20-=20curqui?= Date: Wed, 25 Jan 2023 16:58:15 +0100 Subject: [PATCH 4/4] Update .github/workflows/rust.yml Co-authored-by: Louis Dureuil --- .github/workflows/rust.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/rust.yml b/.github/workflows/rust.yml index 99e48b416..3bbbd0752 100644 --- a/.github/workflows/rust.yml +++ b/.github/workflows/rust.yml @@ -31,6 +31,7 @@ jobs: with: toolchain: stable override: true + # Disable cache due to disk space issues with Windows workers in CI # - name: Cache dependencies # uses: Swatinem/rust-cache@v2.2.0 - name: Run cargo check without any default features