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 73010a5 commit 4cabad4Copy full SHA for 4cabad4
.github/workflows/nestbuildmatrix.yml
@@ -683,13 +683,14 @@ jobs:
683
sudo apt-get remove --autoremove 'libboost*-dev'
684
685
- name: "List available packages"
686
+ if: "${{ ! contains(matrix.use, 'boost') }}"
687
run: |
688
gcc --version
689
python --version
690
apt list --installed
691
pip list
- apt list --installed | grep -i boost
692
- test -z "$(apt list --installed | grep -i boost)"
+ apt list --installed | grep -Ei "boost.*-dev"
693
+ test -z "$(apt list --installed | grep -Ei "boost*-dev")"
694
695
- name: "Configure NEST build"
696
env:
0 commit comments