├── .bazelignore ├── .bazelrc ├── .bazelversion ├── .bcr ├── metadata.template.json ├── presubmit.yml └── source.template.json ├── .github └── workflows │ ├── create_release.yml │ ├── generate_release_notes.sh │ ├── tests.yml │ └── xcode_select.sh ├── .gitignore ├── BUILD.bazel ├── BuildEventProtocol └── BUILD.bazel ├── LICENSE ├── MODULE.bazel ├── README.md ├── SwiftBEPParser ├── BUILD.bazel ├── Sources │ ├── BUILD.bazel │ └── SwiftBEPParser.swift └── Tests │ ├── BUILD.bazel │ ├── Info.plist │ ├── SwiftBEPParserTests.swift │ └── fixtures │ ├── macos_build_failure.bep │ └── macos_build_success.bep ├── WORKSPACE ├── WORKSPACE.bzlmod └── tools ├── BUILD.bazel ├── non_bzlmod_enabled_deps.bzl ├── patches └── 0001-Make-build_event_stream_proto-public-visibility.patch ├── repositories.bzl └── shared.bzl /.bazelignore: -------------------------------------------------------------------------------- 1 | .git 2 | -------------------------------------------------------------------------------- /.bazelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattrobmattrob/swift-bep-parser/HEAD/.bazelrc -------------------------------------------------------------------------------- /.bazelversion: -------------------------------------------------------------------------------- 1 | 7.1.1 2 | -------------------------------------------------------------------------------- /.bcr/metadata.template.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattrobmattrob/swift-bep-parser/HEAD/.bcr/metadata.template.json -------------------------------------------------------------------------------- /.bcr/presubmit.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattrobmattrob/swift-bep-parser/HEAD/.bcr/presubmit.yml -------------------------------------------------------------------------------- /.bcr/source.template.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattrobmattrob/swift-bep-parser/HEAD/.bcr/source.template.json -------------------------------------------------------------------------------- /.github/workflows/create_release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattrobmattrob/swift-bep-parser/HEAD/.github/workflows/create_release.yml -------------------------------------------------------------------------------- /.github/workflows/generate_release_notes.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattrobmattrob/swift-bep-parser/HEAD/.github/workflows/generate_release_notes.sh -------------------------------------------------------------------------------- /.github/workflows/tests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattrobmattrob/swift-bep-parser/HEAD/.github/workflows/tests.yml -------------------------------------------------------------------------------- /.github/workflows/xcode_select.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattrobmattrob/swift-bep-parser/HEAD/.github/workflows/xcode_select.sh -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattrobmattrob/swift-bep-parser/HEAD/.gitignore -------------------------------------------------------------------------------- /BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattrobmattrob/swift-bep-parser/HEAD/BUILD.bazel -------------------------------------------------------------------------------- /BuildEventProtocol/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattrobmattrob/swift-bep-parser/HEAD/BuildEventProtocol/BUILD.bazel -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattrobmattrob/swift-bep-parser/HEAD/LICENSE -------------------------------------------------------------------------------- /MODULE.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattrobmattrob/swift-bep-parser/HEAD/MODULE.bazel -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattrobmattrob/swift-bep-parser/HEAD/README.md -------------------------------------------------------------------------------- /SwiftBEPParser/BUILD.bazel: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /SwiftBEPParser/Sources/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattrobmattrob/swift-bep-parser/HEAD/SwiftBEPParser/Sources/BUILD.bazel -------------------------------------------------------------------------------- /SwiftBEPParser/Sources/SwiftBEPParser.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattrobmattrob/swift-bep-parser/HEAD/SwiftBEPParser/Sources/SwiftBEPParser.swift -------------------------------------------------------------------------------- /SwiftBEPParser/Tests/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattrobmattrob/swift-bep-parser/HEAD/SwiftBEPParser/Tests/BUILD.bazel -------------------------------------------------------------------------------- /SwiftBEPParser/Tests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattrobmattrob/swift-bep-parser/HEAD/SwiftBEPParser/Tests/Info.plist -------------------------------------------------------------------------------- /SwiftBEPParser/Tests/SwiftBEPParserTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattrobmattrob/swift-bep-parser/HEAD/SwiftBEPParser/Tests/SwiftBEPParserTests.swift -------------------------------------------------------------------------------- /SwiftBEPParser/Tests/fixtures/macos_build_failure.bep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattrobmattrob/swift-bep-parser/HEAD/SwiftBEPParser/Tests/fixtures/macos_build_failure.bep -------------------------------------------------------------------------------- /SwiftBEPParser/Tests/fixtures/macos_build_success.bep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattrobmattrob/swift-bep-parser/HEAD/SwiftBEPParser/Tests/fixtures/macos_build_success.bep -------------------------------------------------------------------------------- /WORKSPACE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattrobmattrob/swift-bep-parser/HEAD/WORKSPACE -------------------------------------------------------------------------------- /WORKSPACE.bzlmod: -------------------------------------------------------------------------------- 1 | """Used only when bzlmod is enabled, should be kept empty""" 2 | -------------------------------------------------------------------------------- /tools/BUILD.bazel: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tools/non_bzlmod_enabled_deps.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattrobmattrob/swift-bep-parser/HEAD/tools/non_bzlmod_enabled_deps.bzl -------------------------------------------------------------------------------- /tools/patches/0001-Make-build_event_stream_proto-public-visibility.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattrobmattrob/swift-bep-parser/HEAD/tools/patches/0001-Make-build_event_stream_proto-public-visibility.patch -------------------------------------------------------------------------------- /tools/repositories.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattrobmattrob/swift-bep-parser/HEAD/tools/repositories.bzl -------------------------------------------------------------------------------- /tools/shared.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattrobmattrob/swift-bep-parser/HEAD/tools/shared.bzl --------------------------------------------------------------------------------