Skip to content

Commit

Permalink
ci: use cached apt instead
Browse files Browse the repository at this point in the history
  • Loading branch information
branylagaffe committed Apr 5, 2024
1 parent 6099808 commit 0c85c3c
Showing 1 changed file with 15 additions and 9 deletions.
24 changes: 15 additions & 9 deletions .github/workflows/00-build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -50,15 +50,21 @@ jobs:
- name: Add 'latest boost' package repository
run: sudo add-apt-repository -y "deb https://ppa.launchpadcontent.net/mhier/libboost-latest/ubuntu mantic main"

- name: Install dependancies
run: |
sudo apt install -y \
gcc-13 g++-13 \
libboost1.83-dev \
libboost-serialization1.83-dev \
libboost-iostreams1.83-dev \
libboost-system1.83-dev \
cmake
# - name: Install dependancies
# run: |
# sudo apt install -y \
# gcc-13 g++-13 \
# libboost1.83-dev \
# libboost-serialization1.83-dev \
# libboost-iostreams1.83-dev \
# libboost-system1.83-dev \
# cmake


- uses: awalsh128/cache-apt-pkgs-action@latest
with:
packages: gcc-13 g++-13 libboost1.83-dev libboost-serialization1.83-dev libboost-iostreams1.83-dev libboost-system1.83-dev cmake
version: 1.1

- name: Update compilers paths
run: |
Expand Down

0 comments on commit 0c85c3c

Please sign in to comment.