snewcomer
Phoenix Core Team
Recently, I came across this wonderful blog post on Parsing PDFs (and more) in Elixir using Rust. However, when trying out Github Actions CI with Rustler, I can’t seem to figure out the right steps to get mix compile to work.
ci.yaml
Failed to load NIF Library error
Warning: 04:44:23.229 [warning] The on_load function for module Elixir.RustReader returned:
{:error,
{:load_failed,
~c"Failed to load NIF library /home/runner/work/elixir_pdf_tutorial/elixir_pdf_tutorial/_build/test/lib/elixir_pdf/priv/native/librustreader: 'libtika_native.so: cannot open shared object file: No such file or directory'"}}
How are people setting up their CI environments with Rustler and Phoenix projects?
Trending in Questions
I’m working on a project that simulates the bumbl example in the programming phoenix book. It acts almost like an email client. We have a...
New
Hello,
I know there is an approach for handling lists that allows for optimized traversal, but I can’t recall the specific method (somet...
New
I’m seeing that a list inside a Kino.DataTable will be interpreted as a charlist, even if the Kino.configure() is set to charlists: :as_l...
New
So my question is quite simple and i have found no conclusive answer on forum, google or AI.
Should we use :erlang.float for Integer to ...
New
Documentation
While reading the Scoped Routes section, I noticed that the documentation currently refers to a problem without explainin...
New
Hi, I’ve just set up an application with ash_authentication. There is only magic link strategy for now, so there is no confirmation add o...
New
If a change or preparation module uses Ash.Changeset.get_argument/2 or Ash.Query.get_argument/2 (or any of the other get_argument functio...
New
Other Trending Topics
I am happy to introduce the very α version of the new programming language compiled to BEAM.
Welcome Cure.
It has literally three kille...
New
Hi there! We created Gust: A task orchestrator inspired by Airflow.
For those who have never heard about Aiflow, it’s a Python-based wor...
New
Beam Bots (or just BB for short) is a framework for building fault-tolerant robotics applications in Elixir using familiar OTP patterns. ...
New
Xamal is a deployment tool for Elixir apps that deploys native releases to bare metal servers over SSH. It’s a port of GitHub - basecamp/...
New
Corex is an accessible, unstyled UI component library for Phoenix that integrates Zag.js state machines using Vanilla JavaScript and Live...
New
With AI doing more of the implementation work, I’ve been wondering how much coding I should deliberately keep doing myself.
My main conc...
New
Categories:
Sub Categories:
Forums
Popular Tags
- #ecto
- #liveview
- #troubleshooting
- #learning-elixir
- #library
- #deployment
- #erlang
- #testing
- #genserver
- #mix
- #absinthe
- #remote-other
- #otp
- #plug
- #how-to-question
- #macros
- #postgres
- #elixirconf
- #channels
- #exunit
- #discussion
- #code-sync
- #podcasts
- #javascript
- #onsite
- #dialyzer
- #docker
- #authentication
- #umbrella
- #full-time-contract
- #podcasts-by-brainlid
- #ecto-query
- #elixirconf-us
- #ai
- #blog-post
- #elixir-ls
- #phoenix_html
- #iex
- #graphql
- #genstage
- #websockets
- #supervisor
- #advent-of-code
- #distillery
- #processes
- #api
- #forms
- #hex
- #security
- #metaprogramming










Showing Posts 1 to 10- Show Best Posts
- Show All (oldest first)
- Show All (newest first)
mindok
We have a deps section in our CI yaml that looks something like what’s below. It looks like you are missing the rust tool chain, cargo deps fetch and rust compilation steps.
suchasurge
Hey there.
I think your setup would work with a simpler rust library because looking at your CI output you can see that rust dependencies are downloaded and rust is also compiling stuff.
The
extractousrust library is doing (compiling) stuff with GraalVM because of Apache Tika, see extractous/extractous-core/README.md at main · yobix-ai/extractous · GitHubI also don’t get it running locally, even with a newer rustler version with the deprecations fixed and a GraalVM Java SDK available.
It compiles without errors but also fails with the same
Failed to load NIF libraryerror.Maybe someone has an idea what happens with the
libtika_native.sofile and how to handle it with a rustler setup.@codestirring I think you are the article author? Can you tell us how you were able to get it running?
Thx
Cheers
Frank
snewcomer
Appreciate the response! Oddly still failure to load with
mix compileci.yaml
failure to load
snewcomer
Great point. This might be specific to this rust package. I can’t figure this out either in CI. I can run it on my Mac but I haven’t discerned why that is.
suchasurge
Ah, ok I only tried on linux.
But I just build a simple rust CLI with
extractoususage like in the article which works without complaining aboutlibtika_native.solike with rustler.So there might be some steps needed when used with rustler I can’t figure our right now.
snewcomer
https://github.com/snewcomer/nif-extractous
Yes I think you are right about rustler. Building it in Github Action is trying to reference that
libtika_native.sofrom that/runner/folder. At this point, I am at a loss.filmor
Rustler is not aware of the additional libraries that are copied in
extractous’sbuild.rs. You will have to extend your build process to copy them from Rust’stargetdirectory topriv/native/....snewcomer
Thanks @filmor! Anybody aware of a precedent in the rustler community that we could pull from for this extractous rust library?
snewcomer
A little more investigation…
So it is just that one
libtika_native.sobinary. Nothing else. Extending the build process seems like a good path here.snewcomer
https://github.com/snewcomer/nif-extractous
Alright this ended up working. See README for what I had to do!