fix build check

This commit is contained in:
Abdenasser 2024-11-08 17:37:37 +01:00
parent b16c61addb
commit 9020137e7b

View File

@ -58,7 +58,13 @@ jobs:
with:
components: cargo
target: x86_64-unknown-linux-gnu
profile: minimal
- name: Install sccache
run: |
SCCACHE_VERSION=v0.7.7
curl -L "https://github.com/mozilla/sccache/releases/download/${SCCACHE_VERSION}/sccache-${SCCACHE_VERSION}-x86_64-unknown-linux-musl.tar.gz" | tar xz
sudo mv sccache-*/sccache /usr/local/bin/sccache
echo "RUSTC_WRAPPER=sccache" >> $GITHUB_ENV
- uses: Swatinem/rust-cache@v2
with:
@ -69,5 +75,4 @@ jobs:
run: npm ci
- name: Build Application
working-directory: ./src-tauri
run: cargo build --verbose
run: npm run tauri build