aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorrinpatch <rinpatch@sdf.org>2019-06-29 14:25:47 +0300
committerrinpatch <rinpatch@sdf.org>2019-06-29 14:28:26 +0300
commitbdc1592377d19da67040a78faf360770c54d4e6a (patch)
tree7ad28cb84b002a515649cc222442ec6c4d556417
parenta8c9522e04c5d687f8985698de864cccdf3d65e1 (diff)
downloadpleroma-bdc1592377d19da67040a78faf360770c54d4e6a.tar.gz
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.
-rw-r--r--.gitlab-ci.yml1
-rw-r--r--mix.exs9
2 files changed, 10 insertions, 0 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index f8711f299..d0c540b16 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -35,6 +35,7 @@ docs-build:
- develop@pleroma/pleroma
variables:
MIX_ENV: dev
+ PLEROMA_BUILD_ENV: prod
script:
- mix deps.get
- mix compile
diff --git a/mix.exs b/mix.exs
index 19a80ffb2..c2618d2b2 100644
--- a/mix.exs
+++ b/mix.exs
@@ -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)