Skip to content

Commit c6ef822

Browse files
committed
Update workflow now that the ubuntu-latest image is 24.04
GitHub's Ubuntu 24.04 image has fewer development packages pre-installed than 22.04 did previously; ensure that libbz2 development files are present.
1 parent 5cb1fac commit c6ef822

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

.github/workflows/unix-build.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,8 @@ jobs:
3232
- name: Ubuntu-latest using gcc with sanitizers
3333
if: runner.os == 'Linux'
3434
run: |
35+
sudo apt-get update
36+
sudo apt-get install -y --no-install-suggests --no-install-recommends libbz2-dev
3537
autoreconf -i
3638
./configure CC="gcc -fsanitize=address,undefined"
3739

0 commit comments

Comments
 (0)