Skip to content

Commit

Permalink
move triqs install env variable outside of cache
Browse files Browse the repository at this point in the history
  • Loading branch information
thenoursehorse committed Oct 6, 2023
1 parent ae7c5a5 commit d71779f
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions .github/actions/setup-triqs/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -120,11 +120,12 @@ runs:
cmake .. -DCMAKE_INSTALL_PREFIX=$HOME/triqs_install -DBuild_Documentation=OFF -DBuild_Tests=OFF
make -j1 VERBOSE=1
cd ../../
echo "TRIQS_INSTALL=$HOME/triqs_install" >> $GITHUB_ENV
- name: Install TRIQS
shell: bash
run: cd triqs/build && make install && cd ../../
run: |
cd triqs/build && make install && cd ../../
echo "TRIQS_INSTALL=$HOME/triqs_install" >> $GITHUB_ENV
branding:
icon: "package"
Expand Down

0 comments on commit d71779f

Please sign in to comment.