Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat(infra): move to karnot self hosted runner #273

Merged
merged 19 commits into from
Sep 27, 2024
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
using s3 cache
Signed-off-by: Kratik Jain <kratik1998@gmail.com>
  • Loading branch information
k4kratik committed Sep 24, 2024
commit 910cfe909bbaca7d103a17ee69f078eef7c85f60
16 changes: 15 additions & 1 deletion .github/workflows/coverage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,21 @@ jobs:
- uses: dtolnay/rust-toolchain@master
with:
toolchain: 1.78
- uses: Swatinem/rust-cache@v2 # use a different cache key as coverae uses custom rustc args

# - uses: Swatinem/rust-cache@v2 # use a different cache key as coverae uses custom rustc args

- uses: sparebank1utvikling/actions-cache-s3@main
with:
path: |
~/.cargo/bin/
~/.cargo/registry/index/
~/.cargo/registry/cache/
~/.cargo/git/db/
target/
key: ${{ runner.os }}-cargo-${{ hashFiles('**/Cargo.lock') }}
aws-s3-bucket: karnot-github-ci-cache
aws-region: us-west-1

- uses: rui314/setup-mold@v1
- name: Install cargo-llvm-cov
uses: taiki-e/install-action@cargo-llvm-cov
Expand Down