Skip to content

Commit

Permalink
Fix hoomd installation.
Browse files Browse the repository at this point in the history
  • Loading branch information
joaander committed Jun 20, 2024
1 parent 5e635c6 commit da291bc
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -26,15 +26,15 @@ jobs:
- name: Checkout hoomd
uses: actions/checkout@a5ac7e51b41094c92402da3b24376905380afc29 # v4.1.6
with:
path: hoomd
path: code
ref: ${{ github.event_name == 'pull_request' && github.base_ref || github.ref_name }}
repository: glotzerlab/hoomd-blue
submodules: true

- name: Determine hoomd hash
id: hoomd
run: echo "sha=$(git rev-parse HEAD)" >> $GITHUB_OUTPUT
working-directory: hoomd
working-directory: code

- name: Restore cached HOOMD-blue build
id: cache
Expand Down Expand Up @@ -76,7 +76,7 @@ jobs:
- name: Compile
if: steps.cache.outputs.cache-hit != 'true'
run: ninja -j $(($(getconf _NPROCESSORS_ONLN) + 2))
run: ninja install -j $(($(getconf _NPROCESSORS_ONLN) + 2))
working-directory: hoomd/build

- name: Cache HOOMD-blue build
Expand Down

0 comments on commit da291bc

Please sign in to comment.