Skip to content

Commit

Permalink
fvdb test action current directory fix
Browse files Browse the repository at this point in the history
Signed-off-by: Jonathan Swartz <jonathan@jswartz.info>
  • Loading branch information
swahtz committed Sep 17, 2024
1 parent 01ea68d commit c48bef4
Showing 1 changed file with 7 additions and 8 deletions.
15 changes: 7 additions & 8 deletions .github/workflows/fvdb.yml
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ jobs:
uses: actions/upload-artifact@v4
with:
name: fvdb-test-package
path: dist/*.whl
path: fvdb/dist/*.whl
retention-days: 4

- name: Cleanup
Expand Down Expand Up @@ -114,10 +114,6 @@ jobs:
activate-environment: fvdb_test
environment-file: fvdb/env/test_environment.yml

- name: cd fvdb
run: cd fvdb


- name: Download package
uses: actions/download-artifact@v4
with:
Expand All @@ -129,6 +125,9 @@ jobs:
conda activate fvdb_test
pip install ./dist/*.whl
- name: cd fvdb
run: cd fvdb

- name: Run tests
run: |
cd tests;
Expand Down Expand Up @@ -161,9 +160,6 @@ jobs:
activate-environment: fvdb_test
environment-file: fvdb/env/test_environment.yml

- name: cd fvdb
run: cd fvdb

- name: Download package
uses: actions/download-artifact@v4
with:
Expand All @@ -179,6 +175,9 @@ jobs:
run: |
git config --global --add safe.directory "$(pwd)"
- name: cd fvdb
run: cd fvdb

- name: Run benchmarks
run: |
cd tests;
Expand Down

0 comments on commit c48bef4

Please sign in to comment.