diff --git a/.github/workflows/00-build.yaml b/.github/workflows/00-build.yaml index 71f388c2b5..9e055b325e 100644 --- a/.github/workflows/00-build.yaml +++ b/.github/workflows/00-build.yaml @@ -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: |