Skip to content

Commit

Permalink
separate build workflow into more stages
Browse files Browse the repository at this point in the history
  • Loading branch information
lubbersnick committed Sep 20, 2024
1 parent 2ffeed1 commit e2a0522
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,20 @@ jobs:
run: >-
python -m build
- name: Install minimal pytorch
run: >-
# This is done separately with CPU instructions
# to avoid installing extra libraries (e.g. cuda)
python -m pip install torch --index-url https://download.pytorch.org/whl/cpu
- name: Install hippynn
run: >-
python -m pip install .
- name: Check import hippynn
run: >-
python -c "import hippynn"
- name: Install documentation dependencies
run: >-
python -m pip install .[docs]
Expand Down

0 comments on commit e2a0522

Please sign in to comment.