Skip to content

Commit 243ba3d

Browse files
authored
switch from apt-list to dpkg -l
1 parent 866638a commit 243ba3d

File tree

1 file changed

+5
-3
lines changed

1 file changed

+5
-3
lines changed

.github/workflows/nestbuildmatrix.yml

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -687,12 +687,14 @@ jobs:
687687
run: |
688688
gcc --version
689689
python --version
690+
echo "INSTALLED PYTHON PACKAGES:"
690691
pip list
691692
echo "INSTALLED BOOST PACKAGES:"
692-
apt list --installed 'libboost*'
693+
dpkg -l 'libboost*' | grep "^ii"
693694
echo "INSTALLED BOOST HEADERS:"
694-
apt list --installed 'libboost*-dev'
695-
test -z "$(apt list --installed 'libboost*-dev')"
695+
dpkg -l 'libboost*-dev' | grep "^ii"
696+
echo "LIST HAS TO BE ZERO"
697+
test -z "$(dpkg -l 'libboost*-dev' | grep "^ii")"
696698
697699
- name: "Configure NEST build"
698700
env:

0 commit comments

Comments
 (0)