Add PLEROMA_BUILD_ENV to override env for the version generator and use it in the CI for building docs

This is needed because if we run with MIX_ENV=dev we will get a "+dev"
suffix to the version in the docs, but if we run with MIX_ENV=prod the
docs build will fail because ex_doc is dev-only dependency.
develop
rinpatch 2019-06-29 14:25:47 +03:00
parent a8c9522e04
commit bdc1592377
2 changed files with 10 additions and 0 deletions

View File

@ -35,6 +35,7 @@ docs-build:
- develop@pleroma/pleroma
variables:
MIX_ENV: dev
PLEROMA_BUILD_ENV: prod
script:
- mix deps.get
- mix compile

View File

@ -207,6 +207,15 @@ defmodule Pleroma.Mixfile do
env_name = if Mix.env() != :prod, do: to_string(Mix.env())
env_override = System.get_env("PLEROMA_BUILD_ENV")
env_name =
if env_override do
if env_override != "prod", do: env_override
else
env_name
end
build =
[build_name, env_name]
|> Enum.filter(fn string -> string && string != "" end)