Skip to content
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
15 changes: 1 addition & 14 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,20 +19,7 @@ jobs:
uses: prefix-dev/[email protected]
with:
pixi-version: "latest"
cache: true # Cache pixi installation

- name: Cache pixi environment
uses: actions/cache@v4
with:
path: |
~/.pixi
.pixi
key: ${{ runner.os }}-pixi-${{ hashFiles('pixi.lock') }}
restore-keys: |
${{ runner.os }}-pixi-

- name: Install dependencies
run: pixi install
cache: false # pixi is too large to cache (contains CUDA toolkit)

- name: Check formatting
run: |
Expand Down
3 changes: 2 additions & 1 deletion .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,8 @@ repos:
# Run tests (pre-push hook)
- id: test
name: Run all tests
entry: scripts/test-quiet.sh
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Perhaps we can remove the unused script now that we don't use it anymore? ;)

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Ahh good point. will remove now

# reinstall genmetaballs to rebuild C++/CUDA code, then run tests
entry: bash -c "pixi reinstall genmetaballs && pixi run test"
language: system
pass_filenames: false
always_run: true
Expand Down
35 changes: 0 additions & 35 deletions scripts/test-quiet.sh

This file was deleted.