Skip to content

Commit bd9e61f

Browse files
authored
* Full cleanup of the old project * Add .gitattributes and .gitignore * Bring source code from https://github.com/gabotechs/datafusion-distributed-experiment * Bring tests from https://github.com/gabotechs/datafusion-distributed-experiment * Bring README.md from https://github.com/gabotechs/datafusion-distributed-experiment * Add large test parquet files * Rename crate from datafusion-distributed-experiment to datafusion-distributed * Add full test parquet files using git lfs * Add pipelines * Run cargo fmt
1 parent c299b80 commit bd9e61f

File tree

107 files changed

+2632
-15333
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

107 files changed

+2632
-15333
lines changed

.gitattributes

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
*.parquet filter=lfs diff=lfs merge=lfs -text

.github/actions/setup/action.yml

Lines changed: 0 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -17,24 +17,6 @@ runs:
1717
echo $HOME
1818
echo ${{ runner.os }}
1919
20-
- name: Cache APT packages
21-
if: runner.os == 'Linux'
22-
uses: actions/cache@v4
23-
with:
24-
path: |
25-
/var/cache/apt/archives
26-
/var/lib/apt/lists
27-
key: ${{ runner.os }}-apt-${{ hashFiles('.github/actions/setup/apt-packages.txt') }}
28-
restore-keys: |
29-
${{ runner.os }}-apt-
30-
31-
- name: Update and install APT packages
32-
if: runner.os == 'Linux'
33-
shell: bash
34-
run: |
35-
sudo apt-get update
36-
xargs -a .github/actions/setup/apt-packages.txt sudo apt-get install -y
37-
3820
- uses: dtolnay/rust-toolchain@stable
3921
with:
4022
toolchain: stable

.github/actions/setup/apt-packages.txt

Lines changed: 0 additions & 1 deletion
This file was deleted.

.github/workflows/ci.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,8 @@ jobs:
2828
runs-on: ubuntu-latest
2929
steps:
3030
- uses: actions/checkout@v4
31+
with:
32+
lfs: true
3133
- uses: ./.github/actions/setup
3234
- run: cargo test
3335

.gitignore

Lines changed: 2 additions & 27 deletions
Original file line numberDiff line numberDiff line change
@@ -1,27 +1,2 @@
1-
# Rust build artifacts
2-
target/
3-
4-
# IDE and editor files
5-
.idea/
6-
7-
# Python virtual environments and files
8-
.venv/
9-
.python_startup.py
10-
__pycache__/
11-
*.py[cod]
12-
*$py.class
13-
*.so
14-
15-
# Log files
16-
*.log
17-
proxy.log
18-
worker*.log
19-
20-
# OS generated files
21-
.DS_Store
22-
.DS_Store?
23-
._*
24-
.Spotlight-V100
25-
.Trashes
26-
ehthumbs.db
27-
Thumbs.db
1+
/.idea
2+
/target

0 commit comments

Comments
 (0)