We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 20760ce commit 29ce456Copy full SHA for 29ce456
.github/workflows/ci.yml
@@ -28,6 +28,17 @@ jobs:
28
- name: Run tests
29
run: zig build test --summary all
30
31
+ # Skip installing package docs to avoid wasting time when installing valgrind
32
+ # See: https://github.com/actions/runner-images/issues/10977#issuecomment-2810713336
33
+ - name: Skip installing package docs
34
+ if: runner.os == 'Linux'
35
+ run: |
36
+ sudo tee /etc/dpkg/dpkg.cfg.d/01_nodoc > /dev/null << 'EOF'
37
+ path-exclude /usr/share/doc/*
38
+ path-exclude /usr/share/man/*
39
+ path-exclude /usr/share/info/*
40
+ EOF
41
+
42
- name: Run valgrind tests
43
if: runner.os == 'Linux'
44
run: |
0 commit comments