Skip to content

Commit

Permalink
explicitly uninstall boost dev headers when ~boost
Browse files Browse the repository at this point in the history
  • Loading branch information
terhorstd authored Jul 23, 2024
1 parent 78690d4 commit ac11c85
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions .github/workflows/nestbuildmatrix.yml
Original file line number Diff line number Diff line change
Expand Up @@ -583,6 +583,12 @@ jobs:
if: "${{ contains(matrix.use, 'ltdl') }}"
run: "sudo apt-get install libltdl-dev"

- name: "Uninstall Boost development libraries"
if: "${{ ! contains(matrix.use, 'boost') }}"
run: |
apt list --installed 'libboost*'
sudo apt-get remove --autoremove 'libboost*-dev'
- name: "Install Boost dependencies"
if: "${{ contains(matrix.use, 'boost') }}"
run: "sudo apt-get install libboost-filesystem-dev libboost-regex-dev libboost-wave-dev libboost-python-dev libboost-program-options-dev libboost-test-dev"
Expand Down

0 comments on commit ac11c85

Please sign in to comment.