We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 866638a commit 243ba3dCopy full SHA for 243ba3d
.github/workflows/nestbuildmatrix.yml
@@ -687,12 +687,14 @@ jobs:
687
run: |
688
gcc --version
689
python --version
690
+ echo "INSTALLED PYTHON PACKAGES:"
691
pip list
692
echo "INSTALLED BOOST PACKAGES:"
- apt list --installed 'libboost*'
693
+ dpkg -l 'libboost*' | grep "^ii"
694
echo "INSTALLED BOOST HEADERS:"
- apt list --installed 'libboost*-dev'
695
- test -z "$(apt list --installed 'libboost*-dev')"
+ dpkg -l 'libboost*-dev' | grep "^ii"
696
+ echo "LIST HAS TO BE ZERO"
697
+ test -z "$(dpkg -l 'libboost*-dev' | grep "^ii")"
698
699
- name: "Configure NEST build"
700
env:
0 commit comments