Skip to content

Commit ccfeb2c

Browse files
committed
Drop Bazel Support
1 parent 5df94fd commit ccfeb2c

File tree

8 files changed

+1
-110
lines changed

8 files changed

+1
-110
lines changed

.bazelrc

-5
This file was deleted.

README.md

-17
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,6 @@ Similar to `xcpretty`, but faster.
2222
- [x] Supports the new build system's output.
2323
- [x] Supports Xcode's parallel testing output.
2424
- [x] Supports formatting Swift Package Manager output.
25-
- [x] Supports formatting Bazel output.
2625
- [x] Supports generating JUnit reports.
2726
- [x] Supports macOS & Linux.
2827
- [x] Written in Swift: `xcbeautify` compiles to a static binary which you can
@@ -112,16 +111,6 @@ NSUnbufferedIO=YES xcodebuild [flags] 2>&1 | xcbeautify
112111
swift test [flags] 2>&1 | xcbeautify
113112
```
114113

115-
Parse Bazel's building and testing output:
116-
117-
```sh
118-
set -o pipefail && bazel build //path/to/package:target 2>&1 | xcbeautify
119-
```
120-
121-
```sh
122-
set -o pipefail && bazel test //path/to/package:target 2>&1 | xcbeautify
123-
```
124-
125114
### GitHub Actions
126115

127116
| ![GitHub Actions Summary](assets/gh-summary.png) |
@@ -146,12 +135,6 @@ Generate Xcode project:
146135
make xcode
147136
```
148137

149-
Build with Bazel:
150-
151-
```sh
152-
bazel build //Sources/xcbeautify
153-
```
154-
155138
Release a new version, e.g. `x.y.z`:
156139

157140
```bash

Sources/XcbeautifyLib/BUILD

-14
This file was deleted.

Sources/XcbeautifyLib/CaptureGroups.swift

+1-1
Original file line numberDiff line numberDiff line change
@@ -1336,7 +1336,7 @@ struct CompileErrorCaptureGroup: CaptureGroup {
13361336
static let outputType: OutputType = .error
13371337

13381338
/// Regular expression captured groups:
1339-
/// $1 = file path (could be a relative path if you build with Bazel)
1339+
/// $1 = file path
13401340
/// $2 = is fatal error
13411341
/// $3 = reason
13421342
static let regex = Regex(pattern: #"^(([^:]*):*\d*:*\d*):\s(?:fatal\s)?error:\s(.*)$"#)

Sources/xcbeautify/BUILD

-11
This file was deleted.

Tests/XcbeautifyLibTests/BUILD

-7
This file was deleted.

WORKSPACE

-38
This file was deleted.

external/External.BUILD

-17
This file was deleted.

0 commit comments

Comments
 (0)