Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

make fuzz and sanitizer tests not break CI. #1578

Merged
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -173,6 +173,10 @@ jobs:
--breakage-allowlist-path known_api_breaks.txt

sanitizer_testing:
# Something likely changed in the base ubuntu image causing failures,
# don't fail the build based on these changes.
# https://github.com/apple/swift-protobuf/issues/1571
continue-on-error: true
runs-on: ubuntu-latest
strategy:
fail-fast: false
Expand Down Expand Up @@ -202,6 +206,10 @@ jobs:
swift test -c ${{ matrix.swiftpm_config }} --sanitize=${{ matrix.sanitizer }} ${EXTRAS:-}

fuzzing_regressions:
# Something likely changed in the base ubuntu image causing failures,
# don't fail the build based on these changes.
# https://github.com/apple/swift-protobuf/issues/1573
continue-on-error: true
runs-on: ubuntu-latest
strategy:
fail-fast: false
Expand Down
Loading