diff --git a/.github/workflows/build-check.yml b/.github/workflows/build-check.yml index 750cc2d..8147220 100644 --- a/.github/workflows/build-check.yml +++ b/.github/workflows/build-check.yml @@ -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 \ No newline at end of file + run: npm run tauri build \ No newline at end of file