Improvements for streaming #440
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Build Databricks System Adapter | |
| on: | |
| workflow_dispatch: | |
| push: | |
| paths: | |
| - system-adapters/databricks/** | |
| - crates/system-adapter-protocol/** | |
| - .github/workflows/databricks_system_adapter_build.yml | |
| pull_request: | |
| paths: | |
| - system-adapters/databricks/** | |
| - crates/system-adapter-protocol/** | |
| - .github/workflows/databricks_system_adapter_build.yml | |
| jobs: | |
| build: | |
| runs-on: spiceai-macos | |
| timeout-minutes: 30 | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - name: Setup Rust toolchain | |
| uses: actions-rust-lang/setup-rust-toolchain@v1 | |
| with: | |
| toolchain: 1.91 | |
| cache: true | |
| - name: Build databricks system adapter | |
| run: cargo build --manifest-path system-adapters/databricks/Cargo.toml | |
| - name: Upload binary artifact | |
| uses: actions/upload-artifact@v4 | |
| with: | |
| name: databricks-system-adapter-linux | |
| path: system-adapters/databricks/target/debug/databricks-system-adapter | |
| if-no-files-found: error |