Skip to content

Commit

Permalink
try 18
Browse files Browse the repository at this point in the history
  • Loading branch information
loriab committed Sep 1, 2023
1 parent 2aadfba commit 86a41d9
Showing 1 changed file with 4 additions and 7 deletions.
11 changes: 4 additions & 7 deletions .github/workflows/cmake.yml
Original file line number Diff line number Diff line change
Expand Up @@ -58,8 +58,6 @@ jobs:
if: ${{ steps.skip_check.outputs.should_skip != 'true' && matrix.os == 'macos-latest' }}
run: |
brew install ninja gcc@10 boost eigen bison ccache automake python3 numpy scipy
brew info python
brew info numpy
echo "FC=/usr/local/bin/gfortran-10" >> $GITHUB_ENV
echo "EIGEN3_INCLUDE_DIR=/usr/local/include/eigen3" >> $GITHUB_ENV
Expand Down Expand Up @@ -101,10 +99,10 @@ jobs:
shell: bash
working-directory: ${{github.workspace}}/build/compiler
run: |
CPPFLAGS="-I$EIGEN3_INCLUDE_DIR" CXXFLAGS="-std=c++11 -Wno-enum-compare" ${{github.workspace}}/configure --with-max-am=2 --with-eri-max-am=2 --with-eri3-max-am=3 --enable-eri=0 --enable-eri3=0 --enable-1body=0 --disable-1body-property-derivs --with-multipole-max-order=2
CPPFLAGS="-I$EIGEN3_INCLUDE_DIR" CXXFLAGS="-std=c++11 -Wno-enum-compare" ${{github.workspace}}/configure --with-max-am=2,2 --with-eri-max-am=2,2 --with-eri3-max-am=3,2 --enable-eri=1 --enable-eri3=1 --enable-1body=1 --disable-1body-property-derivs --with-multipole-max-order=2
make -j3
#make check
#cd src/bin/test_eri && ./stdtests.pl && cd ../../..
make check
cd src/bin/test_eri && ./stdtests.pl && cd ../../..
make export
echo "ARTIFACT=`ls -1 libint*tgz`" >> $GITHUB_ENV
Expand Down Expand Up @@ -153,7 +151,7 @@ jobs:
run: |
cd libint-2*
cd build
cmake . -DLIBINT2_PYTHON=ON -DPython_ROOT_DIR=/usr/local/opt
cmake . -DLIBINT2_PYTHON=ON
cmake --build . --target libint2-python
cmake --build . --target libint2-python-test
Expand Down Expand Up @@ -253,7 +251,6 @@ jobs:
-DCMAKE_CXX_COMPILER=${CXX} \
-DLIBINT2_PYTHON=ON \
-DCMAKE_PREFIX_PATH="${CONDA_PREFIX}" \
-DPython_EXECUTABLE="${CONDA_PREFIX}/bin/python" \
${{ matrix.cfg.libargs }}
cmake --build build --target install libint2-python-test
Expand Down

0 comments on commit 86a41d9

Please sign in to comment.