Skip to content

Commit

Permalink
make fuzz and sanitizer tests not break CI.
Browse files Browse the repository at this point in the history
Mark the build steps as allowed to fail while we work out what's happening since
it doesn't seem related to Swift.
  • Loading branch information
thomasvl committed Mar 16, 2024
1 parent ffbe512 commit bd37b60
Showing 1 changed file with 8 additions and 0 deletions.
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

0 comments on commit bd37b60

Please sign in to comment.