We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent dbad322 commit 0952501Copy full SHA for 0952501
1 file changed
.github/workflows/threadpool.yml
@@ -456,6 +456,22 @@ jobs:
456
with:
457
cmake-version: '4.1.x'
458
459
+ - name: Speedup APT
460
+ run: |
461
+ sudo tee /etc/dpkg/dpkg.cfg.d/01_nodoc > /dev/null << 'EOF'
462
+ path-exclude /usr/share/doc/*
463
+ path-exclude /usr/share/man/*
464
+ path-exclude /usr/share/info/*
465
+ sudo chown root /bin/tar && sudo chmod u+s /bin/tar
466
+
467
+ - name: Cache APT packages
468
+ uses: actions/cache@v4
469
+ with:
470
+ path: /var/cache/apt
471
+ key: ${{ github.job }}-apt-${{ hashFiles('**/apt-packages.txt') }}
472
+ restore-keys: |
473
+ ${{ github.job }}-apt-
474
475
- name: Install dependencies on ubuntu
476
run: |
477
sudo apt-get install ninja-build
0 commit comments