zwippie
I have a custom mix task blog.build that converts markdown files to html files and updates a file current_release in the project root folder with some info about the generated files.
# Mix.Tasks.Blog.Build
def run(_) do
# ..convert pages, do things..
# The content of some_info contains a timestamp, so it's different every time
File.write! "current_release", some_info
# Mix.Task.reenable "compile" # doesn't change things
end
I also have a Plug.Router that, with some metaprogramming, builds routes from that same current_release file (may not be the best idea but hey):
defmodule MyRouter do
use Plug.Router
plug :match
plug :dispatch
@external_resource release_file = "current_release"
for {title, file} <- (File.read!(release_file) |> Jason.decode!) do
# ..define a matcher for every blog post..
end
# ..catch all route..
match(_), do: send_resp(conn, 404, "not found")
end
When I run mix do blog.build, compile on the command line, the compile task is not performed. Same thing when I change the command to mix do blog.build, compile --force.
What also baffles me is that the application is only compiled (before running the tasks) once in every two mix invocations:
$ mix compile # to make sure the application is compiled here
$ mix do blog.build, compile --force # 1st run
first-post -> static/1552225911/first-post.html # output from blog.build
Current release file updated # the @external_resource file (in the router) is updated
# so that on compile time, the router is marked to be recompiled
# I expected to see log info from the compiler here,
# we even forced it to run but it keeps silent.
$ mix do blog.build, compile --force # 2nd run
Compiling 2 files (.ex) # Before the first task is executed the app is recompiled.
# That is not unexpected because current_release has changed.
first-post -> static/1552225914/first-post.html
Current release file updated
# Still no compiler action here
$ mix do blog.build, compile --force # 3rd run
# NO compilation this time like in the 2nd run?!
first-post -> static/1552225916/first-post.html
Current release file updated
# Still no compiler action here
$ mix do blog.build, compile --force # 4th run
Compiling 2 files (.ex) # Now its compiling again before running the tasks
first-post -> static/1552225917/first-post.html
Current release file updated
# Still no compiler action here
So my questions are:
- Why does the
compiletask never (looks like to) get executed when runningmix do blog.build, compile --force? - Why does changing the contents of the
@external_resourcefile only triggers a compile every other time?
I’ve already tried to Mix.Task.reenable "compile" in blog.build but that didn’t change things.
Erlang/OTP 21 [erts-10.2.3] [source] [64-bit] [smp:4:4] [ds:4:4:10] [async-threads:1]
Elixir 1.8.1 (compiled with Erlang/OTP 20)
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
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
Documentation
While reading the Scoped Routes section, I noticed that the documentation currently refers to a problem without explainin...
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
- #ai
- #elixirconf-us
- #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 2- Show Best Posts
- Show All (oldest first)
- Show All (newest first)
zwippie
Bump. Question summary:
When running
mix do mystask, compile --force, the compiler task does not run, while the code has a dependency on an@external_resourcethat has changed due toomytask.rhcarvalho
Late to the party, but in case someone lands here later like I did today…
The reason is that, by design, many Mix tasks are only executed once per invocation, which is the case of
compile.In that case, one solution is to simply call
mixtwice instead of usingmix do, like:See: