zwippie

zwippie

`mix do blog.build, compile --force` does not perform compile step

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 compile task never (looks like to) get executed when running mix do blog.build, compile --force?
  • Why does changing the contents of the @external_resource file 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)

First Post!

zwippie

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_resource that has changed due too mytask.

Where Next?

Popular in Questions Top

pmjoe
I have a relationship of love and hate with Elixir. Lots of things are just absolutely right, but there are some things that are kind of ...
New
itssasanka
Hi all, Trying to get some more clarity over utc_datetime and naive_datetime for Ecto: https://hexdocs.pm/ecto/Ecto.Schema.html#module-...
New
Kagamiiiii
Student &amp; New to elixir. Nice language. I want to convert a english character, e.g. “a”, which is stored in a variable, to it’s asci...
New
minhajuddin
I have seen a lot of code which picks the first element from a list using Enum.at(0) instead of List.first. Is there a reason why people ...
New
mathew4509
I have a list say x = ["23gh", "56kh", "97mh"] I would like to pass each element to Val in each iteration. Say, in iteration 1 -------...
New
fayddelight
I tried installing elixir 1.11.2 erlang 23.3.4 via asdf in my zsh shell. Enabled the versions locally and globally. When I list them ...
New
shahryarjb
Hello, I have map which I want to convert it to string like this: the map: %{last_name: "tavakkoli", name: "shahryar"} the string I ne...
New
Exadra37
Sometimes I want to check if the input into a function is not a blank string. My first approach: defmodule Example do def do_stuff(s...
New
jc00ke
Expanding on this topic: https://forum.elixirforum.net/t/map-typespec-question/19217 Let’s say I have a map with required and optional k...
New
jay1
Why is it that the mnesia database isn’t the most preferred database for use in Elixir/Phoenix?
New

Other popular topics Top

Qqwy
Update: How to use the Blogs &amp; Podcasts section You can post links to your blog posts or podcasts either in one of the Official Blog...
3268 119930 1237
New
openscript
Hello! Sorry for this astonishing simple question, but I’m really stuck. I try to set up the intellij-elixir plugin, but I don’t know ho...
New
script
If I have a string “1000 cfu/ml” . I want to remove the characters and / and space . So the string is like this "1000" What is the ...
New
freewebwithme
Using vs code and installed ElixirLS: support and debugger. And I got an error popped up on start up says Failed to run ‘elixir’ comma...
New
myronmarston
The Elixir Typespec docs show the following syntax for keyword lists in typespecs: # ... | [key: type] # keyword lis...
New
vonH
When I run the Plug and I recompile I wind up having to use Ctrl C to quit iex and start again. Witht the help of rlwrap I can use the cu...
New
stefanluptak
Hello everybody, usually, I use a 29" ultra-wide monitor for VSCode which can easily accomodate explorer (files panel) + file with code ...
New
chrisalley
ExUnit now has describe blocks which is a welcome addition coming from RSpec. In the docs, it states that nested hierarchies of describe ...
New
beno
I will often find my self writing things similar to: case some_value do nil -&gt; something() "" -&gt; something() _ -&gt; someth...
New
AstonJ
We’ve put together this wiki for Phoenix LiveView - please feel free to add any info you feel is worth including. What is Phoenix LiveV...
New

We're in Beta

About us Mission Statement