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

Reduce disk space usage in CI #2426

Merged
merged 1 commit into from
Feb 27, 2024
Merged
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
5 changes: 1 addition & 4 deletions .github/workflows/unit.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -66,9 +66,6 @@ jobs:
- name: Rust cache
uses: swatinem/rust-cache@v2

- name: MongoDB in GitHub Actions
uses: supercharge/[email protected]

- uses: ./.github/workflows/setup-snowflake-and-kafka

- uses: ./.github/workflows/setup-mysql-and-mariadb
Expand All @@ -83,7 +80,7 @@ jobs:
SN_DRIVER: ${{ secrets.SN_DRIVER }}
shell: bash
run: |
cargo test test_connector_ --lib --features snowflake,ethereum,kafka,python --no-fail-fast -- --ignored
cargo test -p 'dozer-ingestion-*' --lib --no-fail-fast -- --ignored

- name: Run tests
shell: bash
Expand Down
3 changes: 3 additions & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -33,3 +33,6 @@ datafusion-physical-plan = { git = "https://github.com/getdozer/arrow-datafusion
datafusion-sql = { git = "https://github.com/getdozer/arrow-datafusion" }
datafusion-proto = { git = "https://github.com/getdozer/arrow-datafusion" }
datafusion-common = { git = "https://github.com/getdozer/arrow-datafusion" }

[profile.dev]
debug = 0
Loading