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 b274940 commit f6bfb14Copy full SHA for f6bfb14
.github/workflows/ci.yml
@@ -167,8 +167,12 @@ jobs:
167
- run: cargo check --no-default-features --features afl
168
working-directory: fuzz
169
- uses: dtolnay/install@honggfuzz
170
- - run: sudo apt-get update # https://github.com/actions/runner-images/issues/8953
171
- - run: sudo apt-get install binutils-dev libunwind-dev
+ - name: Run apt install binutils-dev libunwind-dev
+ run: |
172
+ sudo sed -i 's/^update_initramfs=yes$/update_initramfs=no/' /etc/initramfs-tools/update-initramfs.conf
173
+ sudo rm -f /var/lib/man-db/auto-update
174
+ sudo apt-get update
175
+ sudo apt-get install binutils-dev libunwind-dev
176
- run: cargo hfuzz build --no-default-features --features honggfuzz
177
178
0 commit comments