Skip to content

Commit

Permalink
[git] cmake action upd#2
Browse files Browse the repository at this point in the history
  • Loading branch information
Neels99 committed Mar 16, 2024
1 parent e4aa6cf commit 2db1996
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/cmake.yml
Original file line number Diff line number Diff line change
Expand Up @@ -49,12 +49,12 @@ jobs:
id: cache-boost
with:
path: "~/boost"
key: libboost1.78-all-dev
key: libboost1.71-all-dev
- name: Install boost
run: |
sudo apt-get update && sudo apt-get install -yq libboost-filesystem1.78-dev && sudo apt-get install -yq libboost1.78-all-dev
sudo apt-get update && sudo apt-get install -yq libboost-filesystem1.71-dev && sudo apt-get install -yq libboost1.71-all-dev
mkdir -p ~/boost
for dep in libboost1.78-all-dev; do
for dep in libboost1.71-all-dev; do
dpkg -L $dep | while IFS= read -r f; do if test -f $f; then echo $f; fi; done | xargs cp --parents --target-directory ~/boost/
done
Expand Down

0 comments on commit 2db1996

Please sign in to comment.