混合任务 "release" 未找到错误
Mix task "release" not found error
我正在使用 edeliver 为我的 Elixir/Phoenix 应用程序设置一个 Ubuntu 16.04 服务器,当 edeliver 失败并显示错误消息 ** (Mix) The task "release" could not be found
以及退出代码 1 时。如果我去到我的构建服务器,git 拉我的应用程序和 运行 MIX_ENV=prod mix release
或只是 mix release
在获得依赖项后,我得到同样的错误。
但是,同一个应用程序在本地运行没有任何问题。
我的 erlang 版本是 erts-9.0
,elixir 版本在服务器和我的本地计算机上都是 1.5.5
。十六进制版本在 0.16.1
.
处也相同
Phoenix 是使用此命令安装的:mix archive.install https://github.com/phoenixframework/archives/raw/master/phx_new.ez
。
这是我的 mix.exs
文件。
defmodule MyApp.Mixfile do
use Mix.Project
def project do
[
app: :MyApp,
version: "0.0.1",
elixir: "~> 1.4",
elixirc_paths: elixirc_paths(Mix.env),
compilers: [:phoenix, :gettext] ++ Mix.compilers,
start_permanent: Mix.env == :prod,
aliases: aliases(),
deps: deps()
]
end
# Configuration for the OTP application.
#
# Type `mix help compile.app` for more information.
def application do
[
mod: {MyApp.Application, []},
extra_applications: [:comeonin, :logger, :runtime_tools, :earmark, :distillery, :edeliver]
]
end
# Specifies which paths to compile per environment.
defp elixirc_paths(:test), do: ["lib", "test/support"]
defp elixirc_paths(_), do: ["lib"]
# Specifies your project dependencies.
#
# Type `mix help deps` for examples and options.
defp deps do
[
{:phoenix, "~> 1.3.0"},
{:phoenix_pubsub, "~> 1.0"},
{:phoenix_ecto, "~> 3.2"},
{:mariaex, ">= 0.0.0"},
{:phoenix_html, "~> 2.10"},
{:comeonin, "~> 4.0"},
{:phoenix_live_reload, "~> 1.0", only: :dev},
{:gettext, "~> 0.11"},
{:earmark, "~> 1.2.3"},
{:cowboy, "~> 1.0"},
{:edeliver, "~> 1.4.4"},
{:distillery, "~> 1.5.1"}
]
end
# Aliases are shortcuts or tasks specific to the current project.
# For example, to create, migrate and run the seeds file at once:
#
# $ mix ecto.setup
#
# See the documentation for `Mix` for more info on aliases.
defp aliases do
[
"ecto.setup": ["ecto.create", "ecto.migrate", "run priv/repo/seeds.exs"],
"ecto.reset": ["ecto.drop", "ecto.setup"],
"test": ["ecto.create --quiet", "ecto.migrate", "test"]
]
end
end
我的edeliver配置文件.deliver/config
如下:
APP="MyApp"
BUILD_HOST="1.1.1.1"
BUILD_USER="ubuntu"
BUILD_AT="/home/ubuntu/app_build"
PRODUCTION_HOSTS="1.1.1.1"
PRODUCTION_USER="ubuntu"
DELIVER_TO="/home/ubuntu/app_release"
pre_erlang_get_and_update_deps() {
local _prod_secret_path="/home/ubuntu/app_config/prod.secret.exs"
if [ "$TARGET_MIX_ENV" = "prod" ]; then
__sync_remote "
ln -sfn '$_prod_secret_path' '$BUILD_AT/config/prod.secret.exs'
"
fi
}
据我所知,您正在使用 edeliver
将应用程序传送到服务器。那你为什么要 运行 来自服务器的任何东西?
另外,release
任务应该从哪里来?我相信,你的意思是这样的:
mix edeliver build release
mix edeliver deploy release to production
mix edeliver restart production
这是使用 edeliver
构建、部署和重启生产的标准流程。不幸的是,上面的三个命令也不能开箱即用,您需要为 phoenix 项目明确设置 edeliver
(周围有很多很好的教程。)
我遇到的问题是我忘记将最新更改推送到 git,它确实从中获取了源代码。所以在添加 edeliver 之后,它找不到它生成的任何文件。通过将它推到 git 它现在对我有用。
TLDR:明确指向您的分支并确保 git 下的文件夹 /rel/
并提交:
$ mix edeliver build release --branch=feature/deploy
我有类似的错误:** (Mix) The task "release" could not be found
,当我试图找到解决方案时,这个未解决的讨论多次引起了我的注意。我意识到,混合任务 release
在 /rel/config.exs
中。如果你使用命令 $ mix edeliver build release
正如所有教程中提到的那样,edeliver 会获得 master
分支版本(无论你尝试从哪个分支构建)。
我正在使用 edeliver 为我的 Elixir/Phoenix 应用程序设置一个 Ubuntu 16.04 服务器,当 edeliver 失败并显示错误消息 ** (Mix) The task "release" could not be found
以及退出代码 1 时。如果我去到我的构建服务器,git 拉我的应用程序和 运行 MIX_ENV=prod mix release
或只是 mix release
在获得依赖项后,我得到同样的错误。
但是,同一个应用程序在本地运行没有任何问题。
我的 erlang 版本是 erts-9.0
,elixir 版本在服务器和我的本地计算机上都是 1.5.5
。十六进制版本在 0.16.1
.
Phoenix 是使用此命令安装的:mix archive.install https://github.com/phoenixframework/archives/raw/master/phx_new.ez
。
这是我的 mix.exs
文件。
defmodule MyApp.Mixfile do
use Mix.Project
def project do
[
app: :MyApp,
version: "0.0.1",
elixir: "~> 1.4",
elixirc_paths: elixirc_paths(Mix.env),
compilers: [:phoenix, :gettext] ++ Mix.compilers,
start_permanent: Mix.env == :prod,
aliases: aliases(),
deps: deps()
]
end
# Configuration for the OTP application.
#
# Type `mix help compile.app` for more information.
def application do
[
mod: {MyApp.Application, []},
extra_applications: [:comeonin, :logger, :runtime_tools, :earmark, :distillery, :edeliver]
]
end
# Specifies which paths to compile per environment.
defp elixirc_paths(:test), do: ["lib", "test/support"]
defp elixirc_paths(_), do: ["lib"]
# Specifies your project dependencies.
#
# Type `mix help deps` for examples and options.
defp deps do
[
{:phoenix, "~> 1.3.0"},
{:phoenix_pubsub, "~> 1.0"},
{:phoenix_ecto, "~> 3.2"},
{:mariaex, ">= 0.0.0"},
{:phoenix_html, "~> 2.10"},
{:comeonin, "~> 4.0"},
{:phoenix_live_reload, "~> 1.0", only: :dev},
{:gettext, "~> 0.11"},
{:earmark, "~> 1.2.3"},
{:cowboy, "~> 1.0"},
{:edeliver, "~> 1.4.4"},
{:distillery, "~> 1.5.1"}
]
end
# Aliases are shortcuts or tasks specific to the current project.
# For example, to create, migrate and run the seeds file at once:
#
# $ mix ecto.setup
#
# See the documentation for `Mix` for more info on aliases.
defp aliases do
[
"ecto.setup": ["ecto.create", "ecto.migrate", "run priv/repo/seeds.exs"],
"ecto.reset": ["ecto.drop", "ecto.setup"],
"test": ["ecto.create --quiet", "ecto.migrate", "test"]
]
end
end
我的edeliver配置文件.deliver/config
如下:
APP="MyApp"
BUILD_HOST="1.1.1.1"
BUILD_USER="ubuntu"
BUILD_AT="/home/ubuntu/app_build"
PRODUCTION_HOSTS="1.1.1.1"
PRODUCTION_USER="ubuntu"
DELIVER_TO="/home/ubuntu/app_release"
pre_erlang_get_and_update_deps() {
local _prod_secret_path="/home/ubuntu/app_config/prod.secret.exs"
if [ "$TARGET_MIX_ENV" = "prod" ]; then
__sync_remote "
ln -sfn '$_prod_secret_path' '$BUILD_AT/config/prod.secret.exs'
"
fi
}
据我所知,您正在使用 edeliver
将应用程序传送到服务器。那你为什么要 运行 来自服务器的任何东西?
另外,release
任务应该从哪里来?我相信,你的意思是这样的:
mix edeliver build release
mix edeliver deploy release to production
mix edeliver restart production
这是使用 edeliver
构建、部署和重启生产的标准流程。不幸的是,上面的三个命令也不能开箱即用,您需要为 phoenix 项目明确设置 edeliver
(周围有很多很好的教程。)
我遇到的问题是我忘记将最新更改推送到 git,它确实从中获取了源代码。所以在添加 edeliver 之后,它找不到它生成的任何文件。通过将它推到 git 它现在对我有用。
TLDR:明确指向您的分支并确保 git 下的文件夹 /rel/
并提交:
$ mix edeliver build release --branch=feature/deploy
我有类似的错误:** (Mix) The task "release" could not be found
,当我试图找到解决方案时,这个未解决的讨论多次引起了我的注意。我意识到,混合任务 release
在 /rel/config.exs
中。如果你使用命令 $ mix edeliver build release
正如所有教程中提到的那样,edeliver 会获得 master
分支版本(无论你尝试从哪个分支构建)。