Skip to content
Draft
Show file tree
Hide file tree
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
1 change: 1 addition & 0 deletions .github/workflows/bindings_python_ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@ on:
pull_request:
branches:
- main
- 'sqllogic-test'

concurrency:
group: ${{ github.workflow }}-${{ github.ref }}-${{ github.event_name }}
Expand Down
43 changes: 43 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,9 +21,11 @@ on:
push:
branches:
- main
- 'sqllogic-test'
pull_request:
branches:
- main
- 'sqllogic-test'

concurrency:
group: ${{ github.workflow }}-${{ github.ref }}-${{ github.event_name }}
Expand Down Expand Up @@ -53,6 +55,18 @@ jobs:
uses: taiki-e/install-action@v2
with:
tool: [email protected]

- name: Install protobuf
run: |
if [[ "$RUNNER_OS" == "Linux" ]]; then
sudo apt-get update && sudo apt-get install -y protobuf-compiler
elif [[ "$RUNNER_OS" == "macOS" ]]; then
brew install protobuf
elif [[ "$RUNNER_OS" == "Windows" ]]; then
choco install protoc
fi
shell: bash

- name: Check toml format
run: make check-toml

Expand Down Expand Up @@ -89,6 +103,17 @@ jobs:
- name: Cache Rust artifacts
uses: Swatinem/rust-cache@v2

- name: Install protobuf
run: |
if [[ "$RUNNER_OS" == "Linux" ]]; then
sudo apt-get update && sudo apt-get install -y protobuf-compiler
elif [[ "$RUNNER_OS" == "macOS" ]]; then
brew install protobuf
elif [[ "$RUNNER_OS" == "Windows" ]]; then
choco install protoc
fi
shell: bash

- name: Build
run: make build

Expand All @@ -109,6 +134,17 @@ jobs:
- name: Cache Rust artifacts
uses: Swatinem/rust-cache@v2

- name: Install protobuf
run: |
if [[ "$RUNNER_OS" == "Linux" ]]; then
sudo apt-get update && sudo apt-get install -y protobuf-compiler
elif [[ "$RUNNER_OS" == "macOS" ]]; then
brew install protobuf
elif [[ "$RUNNER_OS" == "Windows" ]]; then
choco install protoc
fi
shell: bash

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

Expand All @@ -134,6 +170,9 @@ jobs:
- name: Cache Rust artifacts
uses: Swatinem/rust-cache@v2

- name: Install protobuf
run: sudo apt-get update && sudo apt-get install -y protobuf-compiler

- name: Test
run: cargo test --no-fail-fast --all-targets --all-features --workspace

Expand All @@ -150,6 +189,10 @@ jobs:
- uses: actions/checkout@v5
- name: Setup Nightly Rust toolchain
uses: ./.github/actions/setup-builder

- name: Install protobuf
run: sudo apt-get update && sudo apt-get install -y protobuf-compiler libprotobuf-dev

- name: Generate minimal versions lockfile
run: |
cargo generate-lockfile -Z direct-minimal-versions -Z minimal-versions
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/ci_typos.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@ on:
pull_request:
branches:
- main
- 'sqllogic-test'

concurrency:
group: ${{ github.workflow }}-${{ github.ref }}-${{ github.event_name }}
Expand Down
6 changes: 6 additions & 0 deletions .github/workflows/website.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@ on:
pull_request:
branches:
- main
- 'sqllogic-test'

concurrency:
group: ${{ github.workflow }}-${{ github.ref }}-${{ github.event_name }}
Expand All @@ -49,6 +50,11 @@ jobs:
- name: Copy asf file
run: cp .asf.yaml ./website/book/.asf.yaml

- name: Install protobuf
run: |
sudo apt-get update && sudo apt-get install -y protobuf-compiler
shell: bash

- name: Build API docs
run: |
cargo doc --no-deps --workspace --all-features
Expand Down
1 change: 1 addition & 0 deletions .licenserc.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -33,4 +33,5 @@ header:
- 'dist/*'
- 'Cargo.lock'
- '.github/PULL_REQUEST_TEMPLATE.md'
- '**/*.slt'
comment: on-failure
Loading
Loading