diff options
author | Ivan Tashkinov <ivantashkinov@gmail.com> | 2020-05-21 21:47:32 +0300 |
---|---|---|
committer | Ivan Tashkinov <ivantashkinov@gmail.com> | 2020-05-21 21:47:32 +0300 |
commit | 3a1e810aaaea3e44c4dfc82a014485cf886d6b88 (patch) | |
tree | e64d36fc037177366ef12ebd76002f3eec84c717 /mix.exs | |
parent | 610343edb318654126d9539775ba4b9ff30c8831 (diff) | |
download | pleroma-3a1e810aaaea3e44c4dfc82a014485cf886d6b88.tar.gz pleroma-3a1e810aaaea3e44c4dfc82a014485cf886d6b88.zip |
[#2497] Customized `exexec` launch to support root operation (currently required by Gitlab CI).
Diffstat (limited to 'mix.exs')
-rw-r--r-- | mix.exs | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -197,7 +197,8 @@ defmodule Pleroma.Mixfile do ref: "e0f16822d578866e186a0974d65ad58cddc1e2ab"}, {:mox, "~> 0.5", only: :test}, {:restarter, path: "./restarter"}, - {:exexec, "~> 0.2"}, + # Note: `runtime: true` for :exexec makes CI fail due to `root` user (see Pleroma.Exec) + {:exexec, "~> 0.2", runtime: false}, {:open_api_spex, git: "https://git.pleroma.social/pleroma/elixir-libraries/open_api_spex.git", ref: "f296ac0924ba3cf79c7a588c4c252889df4c2edd"} |