Skip to content

Commit

Permalink
rename more things to pometry-storage
Browse files Browse the repository at this point in the history
  • Loading branch information
fabianmurariu committed Jun 3, 2024
1 parent e983d1f commit e28f473
Show file tree
Hide file tree
Showing 6 changed files with 16 additions and 16 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/_release_rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -60,12 +60,12 @@ jobs:
with:
command: publish
args: --token ${{ secrets.CRATES_TOKEN }} --package raphtory-api --allow-dirty
- name: "Publish raphtory-arrow to crates.io"
- name: "Publish pometry-storage to crates.io"
if: ${{ !inputs.dry_run }}
uses: actions-rs/cargo@v1
with:
command: publish
args: --token ${{ secrets.CRATES_TOKEN }} --package raphtory-arrow --allow-dirty
args: --token ${{ secrets.CRATES_TOKEN }} --package pometry-storage --allow-dirty
- name: "Publish raphtory to crates.io"
if: ${{ !inputs.dry_run }}
uses: actions-rs/cargo@v1
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/test_python_workflow.yml
Original file line number Diff line number Diff line change
Expand Up @@ -59,15 +59,15 @@ jobs:
with:
python-version: ${{ matrix.python }}
cache: 'pip'
- name: Activate raphtory-arrow in Cargo.toml
run: make pull-arrow
- name: Activate pometry-storage in Cargo.toml
run: make pull-storage
- name: Run Maturin develop
uses: PyO3/maturin-action@v1
with:
working-directory: ./python
command: build
target: ${{ matrix.target }}
args: --release --features arrow
args: --release --features storage
- name: Install Python dependencies (Unix)
if: "contains(matrix.os, 'Ubuntu') || contains(matrix.os, 'macOS')"
run: |
Expand Down
12 changes: 6 additions & 6 deletions .github/workflows/test_rust_workflow.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ jobs:
sudo rm -rf /opt/ghc
sudo rm -rf "$AGENT_TOOLSDIRECTORY"
- uses: webfactory/[email protected]
name: Load raphtory-arrow key
name: Load pometry-storage key
with:
ssh-private-key: ${{ secrets.RA_SSH_PRIVATE_KEY }}
- name: Rust version
Expand All @@ -62,14 +62,14 @@ jobs:
TEMPDIR: ${{ runner.temp }}
run: |
cargo nextest run --all --no-default-features
- name: Activate raphtory-arrow in Cargo.toml
run: make pull-arrow
- name: Activate pometry-storage in Cargo.toml
run: make pull-storage
- name: Run all Tests (arrow)
env:
RUSTFLAGS: -Awarnings
TEMPDIR: ${{ runner.temp }}
run: |
cargo nextest run --all --no-default-features --features "arrow"
cargo nextest run --all --no-default-features --features "storage"
- name: Run Tests (features=io)
env:
RUSTFLAGS: -Awarnings
Expand All @@ -90,11 +90,11 @@ jobs:
RUSTFLAGS: -Awarnings
run: |
cargo check -p raphtory --no-default-features --features "vectors"
- name: Run Tests (features=arrow)
- name: Run Tests (features=storage)
env:
RUSTFLAGS: -Awarnings
run: |
cargo check -p raphtory --no-default-features --features "arrow"
cargo check -p raphtory --no-default-features --features "storage"
doc-test:
if: ${{ !inputs.skip_tests }}
name: "Doc tests"
Expand Down
10 changes: 5 additions & 5 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -37,11 +37,11 @@ rust-test-all:
cargo check -p raphtory --no-default-features --features "search"
cargo check -p raphtory --no-default-features --features "vectors"

activate-arrow:
./scripts/activate_private_arrow.py
activate-storage:
./scripts/activate_private_storage.py

deactivate-arrow:
./scripts/deactivate_private_arrow.py
deactivate-storage:
./scripts/deactivate_private_storage.py

pull-arrow: activate-arrow
pull-storage: activate-storage
git submodule update --init --recursive
File renamed without changes.
File renamed without changes.

0 comments on commit e28f473

Please sign in to comment.