Current section

Files

Jump to
beamchmark mix.exs
Raw

mix.exs

defmodule Beamchmark.MixProject do
use Mix.Project
@version "1.4.2"
@github_url "https://github.com/membraneframework/beamchmark"
def project do
[
app: :beamchmark,
version: @version,
elixir: "~> 1.13",
elixirc_paths: elixirc_paths(Mix.env()),
start_permanent: Mix.env() == :prod,
deps: deps(),
dialyzer: dialyzer(),
# hex
description: "Tool for measuring EVM performance",
package: package(),
# docs
name: "Beamchmark",
source_url: @github_url,
homepage_url: "https://membraneframework.org",
docs: docs()
]
end
def application do
[
extra_applications: [:logger, :runtime_tools, :eex, :os_mon]
]
end
defp elixirc_paths(:test), do: ["lib", "test/support"]
defp elixirc_paths(_env), do: ["lib"]
defp deps do
[
{:bunch, "~> 1.5"},
{:math, "~> 0.7.0"},
{:dialyxir, "~> 1.4", only: :dev, runtime: false},
{:credo, "~> 1.7", only: :dev, runtime: false},
{:ex_doc, "~> 0.34", only: :dev, runtime: false}
]
end
defp dialyzer() do
opts = [
flags: [:error_handling],
plt_add_apps: [:mix, :syntax_tools]
]
if System.get_env("CI") == "true" do
# Store PLTs in cacheable directory for CI
File.mkdir_p!(Path.join([__DIR__, "priv", "plts"]))
[plt_local_path: "priv/plts", plt_core_path: "priv/plts"] ++ opts
else
opts
end
end
defp package do
[
maintainers: ["Membrane Team"],
licenses: ["Apache-2.0"],
links: %{
"GitHub" => @github_url,
"Membrane Framework Homepage" => "https://membraneframework.org"
}
]
end
defp docs do
[
main: "readme",
extras: ["README.md", "LICENSE"],
source_ref: "v#{@version}",
nest_modules_by_prefix: [Beamchmark.Suite, Beamchmark.Formatters]
]
end
end