Skip to content

Conversation

@shukitchan
Copy link
Contributor

The fuzz job is currently failing. This is part of the fix.

Copy link
Contributor

Copilot AI left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Pull request overview

This PR addresses failures in the CI fuzz job by updating various build dependencies and configurations.

Changes:

  • Updated Go version from 1.24.1 to 1.24.12 and BoringSSL git commit hash
  • Added additional cmake compiler flags and pthread configuration for BoringSSL builds
  • Migrated from Python 2 to Python 3 dependencies and added libpsl-dev, plus added symlinks for libswoc library
  • Updated CI runner from ubuntu-latest to ubuntu-24.04

Reviewed changes

Copilot reviewed 3 out of 3 changed files in this pull request and generated 1 comment.

File Description
tools/build_boringssl_h3_tools.sh Updates Go version, BoringSSL commit, and cmake build configuration with additional compiler flags and pthread settings
tests/fuzzing/oss-fuzz.sh Migrates from Python 2 to Python 3, adds libpsl-dev dependency, and creates symlinks for libswoc shared library
.github/workflows/cifuzz.yml Updates CI runner to explicitly use Ubuntu 24.04 instead of ubuntu-latest

💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.

Comment on lines 67 to 68
ln -sf $OUT/lib/libswoc.so.1.5.15 libswoc.so.1
ln -sf $OUT/lib/libswoc.so.1.5.15 libswoc.so
Copy link

Copilot AI Jan 28, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The symlink targets are missing the destination directory. These commands will create symlinks in the current working directory (build/) rather than in $OUT/lib/ where they should be. The commands should be: ln -sf $OUT/lib/libswoc.so.1.5.15 $OUT/lib/libswoc.so.1 and ln -sf $OUT/lib/libswoc.so.1.5.15 $OUT/lib/libswoc.so, or alternatively change to $OUT/lib/ before creating the symlinks.

Suggested change
ln -sf $OUT/lib/libswoc.so.1.5.15 libswoc.so.1
ln -sf $OUT/lib/libswoc.so.1.5.15 libswoc.so
ln -sf $OUT/lib/libswoc.so.1.5.15 $OUT/lib/libswoc.so.1
ln -sf $OUT/lib/libswoc.so.1.5.15 $OUT/lib/libswoc.so

Copilot uses AI. Check for mistakes.
Copy link
Contributor

Copilot AI left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Pull request overview

Copilot reviewed 3 out of 3 changed files in this pull request and generated no new comments.


💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant