Noah Kawasaki
Noah Kawasaki
I think you need to start up the Thrift Server to connect with ODBC? This particular image does not do that by default, I was trying to connect to Spark...
+1 Though, it looks like in the latest `Dockerfile` they have updated `FROM debian:9`. However the pre-built hosted images in the DockerHub registry are not using this. So, what I...
whoa.. are Airbyte PRs able to merge without passing all checks? Here's another related issue https://github.com/airbytehq/airbyte/issues/7566
Unfortunately, Minitest just doesn't have that type of "magic" built in with any sort of test runner CLI tooling, its just barebones ruby CLI execution. Rake tasks + minitest makes...
Just tried with psych 5.2.3, same behavior. Running direct binary commands: `bazel run --enable_workspace @ruby//:bundle -- update` includes the snakeyaml compilation: ``` Fetching gem metadata from https://rubygems.org/...... Resolving dependencies... Fetching...
It is odd, the only issue that comes up is if your code uses psych in a way where it needs to actually load the jar `./rules_ruby_bug/.gem/jruby/3.1.0/gems/psych-3.3.3-java/lib/org/yaml/snakeyaml/1.31/snakeyaml-1.31.jar` so I suspect...
There is a whole bunch of related issues from jruby and psych: https://github.com/jruby/jar-dependencies/issues/92 https://github.com/jruby/jar-dependencies/issues/91 https://github.com/jruby/jruby/issues/8606 Although its not obvious to me why bazel rules_ruby would fail to build the jars,...
Yeah, you are correct, removing `--local` from bundle install fixes the problem. I can reproduce this behavior outside of bazel: ``` > bundle install using maven for the first time...
Ah, I see how psych does this now. It uses https://github.com/rake-compiler/rake-compiler here https://github.com/ruby/psych/blob/master/Rakefile#L15 Im not sure how to integrate this into rules_ruby the best but it seems like a limitation...
Thats what I thought, ill see if I can recreate the behavior needed with bazel java rules. Its only searching for a snakeyaml jar file, so I imagine that must...