Skip to content

Commit 80eef8c

Browse files
committed
Load current application in compile.app
1 parent 9dcdc1a commit 80eef8c

File tree

3 files changed

+10
-1
lines changed

3 files changed

+10
-1
lines changed

lib/mix/lib/mix/tasks/compile.app.ex

+5
Original file line numberDiff line numberDiff line change
@@ -83,6 +83,9 @@ defmodule Mix.Tasks.Compile.App do
8383
The complete list can be found on [Erlang's application
8484
specification](https://www.erlang.org/doc/man/app).
8585
86+
From Elixir v1.17 onwards, the application .app file is also loaded
87+
whenever the task runs.
88+
8689
## Command line options
8790
8891
* `--force` - forces compilation regardless of modification times
@@ -167,12 +170,14 @@ defmodule Mix.Tasks.Compile.App do
167170

168171
properties = [config_mtime: new_mtime] ++ properties
169172
contents = :io_lib.format("~p.~n", [{:application, app, properties}])
173+
:application.load({:application, app, properties})
170174

171175
Mix.Project.ensure_structure()
172176
File.write!(target, IO.chardata_to_string(contents))
173177
Mix.shell().info("Generated #{app} app")
174178
{:ok, []}
175179
else
180+
:application.load({:application, app, current_properties})
176181
{:noop, []}
177182
end
178183
end

lib/mix/test/mix/tasks/compile.app_test.exs

+4
Original file line numberDiff line numberDiff line change
@@ -71,12 +71,15 @@ defmodule Mix.Tasks.Compile.AppTest do
7171
assert Mix.Tasks.Compile.App.run([]) == {:ok, []}
7272

7373
properties = parse_resource_file(:sample)
74+
assert Application.spec(:sample, :vsn) == ~c"0.1.0"
7475
assert properties[:vsn] == ~c"0.1.0"
7576
assert properties[:modules] == [A, B]
7677
assert properties[:applications] == [:kernel, :stdlib, :elixir]
7778
refute Keyword.has_key?(properties, :compile_env)
7879

80+
Application.unload(:sample)
7981
assert Mix.Tasks.Compile.App.run([]) == {:noop, []}
82+
assert Application.spec(:sample, :vsn) == ~c"0.1.0"
8083
end)
8184
end
8285

@@ -114,6 +117,7 @@ defmodule Mix.Tasks.Compile.AppTest do
114117
Mix.Tasks.Compile.App.run([])
115118

116119
properties = parse_resource_file(:custom_project)
120+
assert Application.spec(:custom_project, :vsn) == ~c"0.2.0"
117121
assert properties[:vsn] == ~c"0.2.0"
118122
assert properties[:maxT] == :infinity
119123
assert properties[:optional_applications] == [:ex_unit, :mix]

lib/mix/test/mix/tasks/eval_test.exs

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ defmodule Mix.Tasks.EvalTest do
99

1010
test "does not start applications", context do
1111
in_tmp(context.test, fn ->
12-
expr = "send self(), {:apps, Application.loaded_applications()}"
12+
expr = "send self(), {:apps, Application.started_applications()}"
1313
Mix.Tasks.Eval.run([expr])
1414
assert_received {:apps, apps}
1515
refute List.keyfind(apps, :sample, 0)

0 commit comments

Comments
 (0)