Jeremy Kun

Results 331 comments of Jeremy Kun
trafficstars

It may take us some more time to support this older style of encoding. IMO, the newer style of encodings are quite a bit simpler. I wonder if there's a...

Looks like I can maybe get it from the GITHUB_EVENT_PATH env var shown by Jess here https://blog.jessfraz.com/post/the-life-of-a-github-action/ And seems to be documented in the webhooks here: https://developer.github.com/webhooks/#events Need to figure...

Looks like https://developer.github.com/v3/pulls/#list-pull-requests-files And I can `GET /repos/:owner/:repo/pulls/:pull_number/files` Look for the status field and ensure it's not removed (what is the exact string there?), and then deal with pagination. Maybe...

Got the python api and can get the pull request files info using https://pygithub.readthedocs.io/en/latest/examples/PullRequest.html#get-pull-request-by-number

Ah, so this is why I had added the PyGithub package to the requirements :)

Could you let me know which specific commit you've checked out? That way I can try to reproduce it. Generally speaking, [this list](https://github.com/j2kun/mlir-tutorial/blob/main/tests/BUILD#L8-L19) (at HEAD) describes which set of binaries...

Looking at your printed output, that is very strange... It looks like your `PWD` is `PWD=/tmp/bazel-working-directory/_main/bazel-out/k8-fastbuild/bin/tests/affine_loop_unroll.mlir.test.runfiles/_main`, which is not what I'd expect. What is `_main`? I think that should be...

I think what I didn't quite understand until you filed this issue is how dependent the lit config is to the particular name of the project directory. I'm guessing you'd...

I don't have a mac machine to test on, but I think that flag may be for when you're building applications for Mac systems, not necessarily which C++ toolchain is...

I'm afraid you may need to update your xcode version, because it looks like bazel detects the xcode version automatically here.