Skip to content

Commit f6bfb14

Browse files
committed
Disable initramfs update and man-db update
1 parent b274940 commit f6bfb14

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

.github/workflows/ci.yml

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -167,8 +167,12 @@ jobs:
167167
- run: cargo check --no-default-features --features afl
168168
working-directory: fuzz
169169
- 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
170+
- name: Run apt install binutils-dev libunwind-dev
171+
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
172176
- run: cargo hfuzz build --no-default-features --features honggfuzz
173177
working-directory: fuzz
174178

0 commit comments

Comments
 (0)