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

DEBUG sccache #11

Closed
wants to merge 7 commits into from
Closed
Changes from all commits
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
16 changes: 16 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,9 @@ concurrency:

env:
rust_msrv: "1.77.1"
SCCACHE_GHA_ENABLED: "true"
RUSTC_WRAPPER: "sccache"
SCCACHE_LOG: "debug"

jobs:
check:
Expand All @@ -46,6 +49,9 @@ jobs:
- name: Check License Header
uses: apache/skywalking-eyes/[email protected]

- name: Setup sccache
uses: mozilla-actions/[email protected]

- name: Install cargo-sort
run: make install-cargo-sort

Expand Down Expand Up @@ -78,6 +84,9 @@ jobs:
steps:
- uses: actions/checkout@v4

- name: Setup sccache
uses: mozilla-actions/[email protected]

- name: Setup Rust toolchain
uses: ./.github/actions/setup-builder
with:
Expand All @@ -96,6 +105,10 @@ jobs:
- windows-latest
steps:
- uses: actions/checkout@v4

- name: Setup sccache
uses: mozilla-actions/[email protected]

- name: Build
run: cargo build -p iceberg --no-default-features

Expand All @@ -104,6 +117,9 @@ jobs:
steps:
- uses: actions/checkout@v4

- name: Setup sccache
uses: mozilla-actions/[email protected]

- name: Setup Rust toolchain
uses: ./.github/actions/setup-builder
with:
Expand Down
Loading