Compare commits
2 commits
5c1ace64a2
...
6ee32cbdc9
Author | SHA1 | Date | |
---|---|---|---|
6ee32cbdc9 | |||
0b907ca861 |
4 changed files with 11 additions and 11 deletions
|
@ -7,4 +7,4 @@ pipeline:
|
|||
- mix format --check-formatted
|
||||
when:
|
||||
event:
|
||||
- tag
|
||||
- push
|
||||
|
|
|
@ -11,17 +11,12 @@ matrix:
|
|||
include:
|
||||
- tag: amd64
|
||||
docker_prefix: ""
|
||||
- tag: arm64
|
||||
docker_prefix: arm64v8/
|
||||
- tag: arm
|
||||
docker_prefix: arm32v7/
|
||||
|
||||
|
||||
pipeline:
|
||||
glibc:
|
||||
when:
|
||||
event:
|
||||
- push
|
||||
- tag
|
||||
secrets:
|
||||
- SCW_ACCESS_KEY
|
||||
- SCW_SECRET_KEY
|
||||
|
@ -50,7 +45,10 @@ pipeline:
|
|||
when:
|
||||
event:
|
||||
- tag
|
||||
|
||||
secrets:
|
||||
- SCW_ACCESS_KEY
|
||||
- SCW_SECRET_KEY
|
||||
- SCW_DEFAULT_ORGANIZATION_ID
|
||||
group: release
|
||||
image: ${docker_prefix}elixir:1.13-alpine
|
||||
environment:
|
||||
|
@ -62,6 +60,8 @@ pipeline:
|
|||
- chmod +x scaleway-cli
|
||||
- ./scaleway-cli object config install type=rclone
|
||||
- echo "import Mix.Config" > config/prod.secret.exs
|
||||
- mix local.hex --force
|
||||
- mix local.rebar --force
|
||||
- mix deps.get --only prod
|
||||
- mkdir release
|
||||
- export PLEROMA_BUILD_BRANCH=${CI_COMMIT_BRANCH}
|
||||
|
|
|
@ -10,7 +10,7 @@ pipeline:
|
|||
image: pleromaforkci/ci-base:${ELIXIR_VERSION}
|
||||
when:
|
||||
event:
|
||||
- tag
|
||||
- push
|
||||
environment:
|
||||
MIX_ENV: test
|
||||
commands:
|
||||
|
@ -24,7 +24,7 @@ pipeline:
|
|||
image: pleromaforkci/ci-base:${ELIXIR_VERSION}
|
||||
when:
|
||||
event:
|
||||
- tag
|
||||
- push
|
||||
environment:
|
||||
MIX_ENV: test
|
||||
POSTGRES_DB: pleroma_test
|
||||
|
|
2
mix.exs
2
mix.exs
|
@ -4,7 +4,7 @@ defmodule Pleroma.Mixfile do
|
|||
def project do
|
||||
[
|
||||
app: :pleroma,
|
||||
version: version("2.4.51"),
|
||||
version: version("2.5.0"),
|
||||
elixir: "~> 1.9",
|
||||
elixirc_paths: elixirc_paths(Mix.env()),
|
||||
compilers: [:phoenix, :gettext] ++ Mix.compilers(),
|
||||
|
|
Loading…
Reference in a new issue