Thi Doan

Results 142 comments of Thi Doan

Or build a bazel binary with that patch.

You have to install its submodules first. ``` shell cd /path/to/SwiftHN git submodule init git submodule update ```

We're not using this anymore but feel free to work on it if you have a use-case for it.

For your example, I'd suggest using `swiftc_inputs` instead of `data` if you want to include additional files in compile actions. Try this: ```diff diff --git c/SampleApp/BUILD i/SampleApp/BUILD index 3136ddc..2fac22a 100644...

Re: Validation Actions If anyone wants to get rid of your Xcode's pre-build phase, give [this](https://github.com/thii/rules_swiftlint) a try.

Closing in favor of a more proper solution at https://github.com/bazelbuild/bazel/pull/14951.

It should be ready now. I was waiting for CI to be green before marking it as ready to reduce notification noises.

I've just bumped into the same issue. It looks like SwiftLint currently require `rules_apple` and `rules_xcodeproj` just because the top-level BUILD file where the `@SwiftLint//:swiftlint` target is defined is loading...

Your prebuilt library is depending on a source-built library, but they're compiled with different compilers. This is not possible with Swift. You need to use the same version of Xcode...