Skip to content

Commit

Permalink
Fix CI ordering, missed change in makefile
Browse files Browse the repository at this point in the history
  • Loading branch information
EricaCMitchell committed Aug 21, 2024
1 parent 0403d67 commit d46cc13
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
14 changes: 7 additions & 7 deletions .github/workflows/continuous_integration.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,20 +38,20 @@ jobs:
create-args: >-
python=${{ matrix.python-version }}
- name: Install package
# conda setup requires this special shell
shell: bash -l {0}
run: |
python -m pip install . --no-deps
micromamba list
- name: Build integrals
shell: bash -l {0}
run: |
cd $GITHUB_WORKSPACE/quax/integrals
make
cd $GITHUB_WORKSPACE
- name: Install package
# conda setup requires this special shell
shell: bash -l {0}
run: |
python -m pip install .
micromamba list
- name: Run tests
# conda setup requires this special shell
shell: bash -l {0}
Expand Down
2 changes: 1 addition & 1 deletion quax/integrals/makefile
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ I1 := $(LIBINT_PREFIX)/include
I2 := $(LIBINT_PREFIX)/include/libint2
L1 := $(LIBINT_PREFIX)/lib
# Eigen headers location
I3 := /usr/include/eigen3
I3 := $(CONDA_PREFIX)/eigen3
# HDF5 headers, static and shared libraries
I6 := $(CONDA_PREFIX)/include
L2 := $(CONDA_PREFIX)/lib
Expand Down

0 comments on commit d46cc13

Please sign in to comment.