Skip to content
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/header@v0.6.0

- name: Setup sccache
uses: mozilla-actions/sccache-action@v0.0.4

- 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/sccache-action@v0.0.4

- 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/sccache-action@v0.0.4

- 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/sccache-action@v0.0.4
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The latest version is 0.0.7, but I only see 0.0.4 listed here https://github.com/apache/infrastructure-actions/blob/main/approved_patterns.yml

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Should we consider submit a pr to ask infra team to update approved pattens? cc @Xuanwo

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.


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