From e09690a0c87bca91f0ec075f5391b7afd2fc81db Mon Sep 17 00:00:00 2001 From: Guillermo Perez Date: Tue, 5 Mar 2024 15:29:02 +0100 Subject: [PATCH] add credentials for sccache --- .github/workflows/codecov.yml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/.github/workflows/codecov.yml b/.github/workflows/codecov.yml index a72ed9c906..00821beef0 100644 --- a/.github/workflows/codecov.yml +++ b/.github/workflows/codecov.yml @@ -19,6 +19,9 @@ jobs: uses: ./.github/actions/prep-ubuntu with: cache: enabled + # Cache needs Google credentials: + GWIP: ${{ secrets.GWIP_SCCACHE }} + GSA: ${{ secrets.GSA_SCCACHE }} - name: Install Tarpaulin run: cargo install --locked cargo-tarpaulin @@ -27,7 +30,8 @@ jobs: env: RUST_BACKTRACE: 1 run: | - cargo tarpaulin --timeout 3600 -e runtime-integration-tests --features fast-runtime --workspace -v --exclude-files **/mock.rs **/weights.rs **/weights/* --out xml + cargo tarpaulin --timeout 300 -e runtime-integration-tests --features fast-runtime \ + --workspace --exclude-files **/mock.rs **/weights.rs **/weights/* --out xml # UPLOAD REPORTS (requires cargo 1.70.0) - name: Upload to codecov.io