File tree Expand file tree Collapse file tree 7 files changed +5
-293
lines changed Expand file tree Collapse file tree 7 files changed +5
-293
lines changed Original file line number Diff line number Diff line change 4141 - name : Install System Dependencies
4242 run : |
4343 sudo apt-get update
44- sudo apt-get install -y gcc curl pkg-config libssl-dev make
44+ sudo apt-get install -y gcc curl pkg-config libssl-dev make liblzma-dev
4545 cargo install cargo-tarpaulin --locked || true
4646
4747 - name : Run Rust Tests
7373 - name : Install System Dependencies
7474 run : |
7575 sudo apt-get update
76- sudo apt-get install -y gcc curl pkg-config libssl-dev make
76+ sudo apt-get install -y gcc curl pkg-config libssl-dev make liblzma-dev
7777
7878 - name : Build Extension & Run SQL Tests
7979 run : |
Original file line number Diff line number Diff line change @@ -113,7 +113,7 @@ debug: rust-build-debug ## Build the extension in debug mode (DuckDB + extension
113113.PHONY : install-deps
114114install-deps : # # Set up development environment (for Debian-based systems)
115115 @echo " Setting up development environment..."
116- @sudo apt-get install -y cmake clang-format snap python3-pip
116+ @sudo apt-get install -y cmake clang-format snap python3-pip liblzma-dev
117117 @sudo snap install rustup --classic
118118 @cargo install cargo-tarpaulin cbindgen cargo-edit cargo-audit cargo-outdated cargo-careful
119119 @cd gaggle && cargo check --features " tract"
Original file line number Diff line number Diff line change 1212[ ![ Docs] ( https://img.shields.io/badge/docs-read-blue?style=flat&labelColor=282c34&logo=read-the-docs )] ( https://github.com/CogitatorTech/gaggle/tree/main/docs )
1313[ ![ License] ( https://img.shields.io/badge/license-MIT%2FApache--2.0-007ec6?style=flat&labelColor=282c34&logo=open-source-initiative )] ( https://github.com/CogitatorTech/gaggle )
1414
15- Access and Query Kaggle Datasets from DuckDB
15+ Access and query Kaggle datasets from DuckDB
1616
1717</div >
1818
Load Diff This file was deleted.
Original file line number Diff line number Diff line change 44use gaggle:: { gaggle_clear_last_error, gaggle_last_error} ;
55use gaggle:: { gaggle_download_dataset, gaggle_free, gaggle_set_credentials} ;
66use std:: ffi:: { CStr , CString } ;
7- use std:: fs;
8- use std:: io:: Write ;
97use std:: sync:: { Arc , Barrier } ;
108use std:: thread;
119
Original file line number Diff line number Diff line change 11## Testing Gaggle Extension
22
33This directory contains a collection of mainly Sqllogictest-style tests for the Gaggle DuckDB extension.
4- These tests are different than other tests like Rust tests in [ gaggle] ( ../gaggle/src ) .
4+ These tests are different than other tests like Rust tests for the [ gaggle] ( ../gaggle ) crate .
55
66### Prerequisites
77
Load Diff This file was deleted.
You can’t perform that action at this time.
0 commit comments