Grzegorz Lukasik

Results 17 comments of Grzegorz Lukasik

The above shebangs were not working for me for `py_test` targets because py file script path is referenced by path from within .runfiles in [test-setup.sh](https://github.com/bazelbuild/bazel/blob/8e8ddaba0e90c280bfd85644d6ccd91df5b6d353/tools/test/test-setup.sh#L236) Longer version was needed: `stub_shebang...

Happened for me also on Ubuntu 22.04 Noticed that go commands were not printing anything when redirected to file, this file was empty: `go env GOMODCACHE > file` The issue...

> https://github.com/hexops/gotextdiff This one has been archived: `This repository has been archived by the owner on Feb 9, 2024. It is now read-only.`

We also hit this problem as we include e.g. `@bazel_tools//tools/cpp:toolchain_utils.bzl` in some rules. For now we used `--spawn_strategy=local` as a workaround, but it stopped working between stardoc 0.5.3 and 0.5.4...

Wonder whether it would be possible for bazel to create automatic targets for `.bzl` files with dependencies created out of load statements. Then stardoc rules could use regular aspects and...

Possibly this code in media-kit could be extended to collect actual error messages, not sure if those would be useful but maybe those will give additional context: https://github.com/media-kit/media-kit/blob/63c6ebe8366db7ecfbd13ab9ce76b11dd86dae48/media_kit/lib/src/player/native/core/native_library.dart#L75 From what...

Quick question: is the idea to parse all .bzl files in the repo?

I am using fresh install of neovim in WSL2 and looks by default it was using windows CRLF endlines... The issue is fixed by using unix endlines. So seems this...

Attaching small script to reproduce the issue: [test_starpls_crlf.txt](https://github.com/withered-magic/starpls/files/15264009/test_starpls_crlf.txt) Output: ``` Diagnostics: { "jsonrpc": "2.0", "method": "textDocument/publishDiagnostics", "params": { "diagnostics": [ { "message": "Unexpected indentation", "range": { "end": { "character": 0,...

There is some code where bazel is creating junctions if cannot find target file: https://github.com/bazelbuild/bazel/blob/8f18d362c852377740cb032b02c42d78b9a44ad0/src/main/java/com/google/devtools/build/lib/windows/WindowsFileSystem.java#L89