Woodpecker CI: Unify OTP builds into a single worfklow
This commit is contained in:
parent
d8b8cbbb8d
commit
5229e8ae65
4 changed files with 87 additions and 224 deletions
|
|
@ -1,81 +0,0 @@
|
||||||
when:
|
|
||||||
- event: push
|
|
||||||
branch: ${CI_REPO_DEFAULT_BRANCH}
|
|
||||||
path: [ "*.ex", "*.eex", "*.exs", "mix.lock", ".woodpecker/**" ]
|
|
||||||
|
|
||||||
matrix:
|
|
||||||
platform:
|
|
||||||
- linux/amd64
|
|
||||||
- linux/arm64
|
|
||||||
|
|
||||||
# This is needed for the when clauses below.
|
|
||||||
# When the platform clause is fixed, this might not be needed anymore
|
|
||||||
labels:
|
|
||||||
platform: ${platform}
|
|
||||||
|
|
||||||
variables:
|
|
||||||
pleroma_build_cmds: &pleroma_build_cmds
|
|
||||||
- echo "import 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}
|
|
||||||
- mix release --path release
|
|
||||||
artifacts_uploader_settings: &artifacts_uploader_settings
|
|
||||||
user:
|
|
||||||
from_secret: pleroma-ci-user
|
|
||||||
password:
|
|
||||||
from_secret: pleroma-ci-password
|
|
||||||
owner: 'pleroma'
|
|
||||||
|
|
||||||
steps:
|
|
||||||
otp-develop-amd64-musl:
|
|
||||||
image: docker.io/hexpm/elixir-amd64:1.17.3-erlang-27.3.4.2-alpine-3.22.1
|
|
||||||
# when:
|
|
||||||
# - platform: linux/amd64
|
|
||||||
# does not work even though it should according to docs
|
|
||||||
# https://github.com/woodpecker-ci/woodpecker/discussions/5367#discussioncomment-13901342
|
|
||||||
when:
|
|
||||||
- evaluate: platform == "linux/amd64"
|
|
||||||
environment:
|
|
||||||
MIX_ENV: prod
|
|
||||||
VIX_COMPILATION_MODE: PLATFORM_PROVIDED_LIBVIPS
|
|
||||||
commands:
|
|
||||||
- apk add git build-base cmake file-dev openssl vips-dev zip
|
|
||||||
- <<: *pleroma_build_cmds
|
|
||||||
- zip -9rq pleroma-${CI_REPO_DEFAULT_BRANCH}-${CI_COMMIT_SHA:0:8}-amd64-musl.zip release
|
|
||||||
|
|
||||||
upload-artifacts-amd64-musl:
|
|
||||||
image: docker.io/woodpeckercommunity/plugin-gitea-package:0.5.0
|
|
||||||
when:
|
|
||||||
- evaluate: platform == "linux/amd64"
|
|
||||||
settings:
|
|
||||||
<<: *artifacts_uploader_settings
|
|
||||||
package_name: pleroma-otp-${CI_REPO_DEFAULT_BRANCH}-amd64-musl
|
|
||||||
package_version: ${CI_REPO_DEFAULT_BRANCH}-${CI_COMMIT_SHA:0:8}-amd64-musl
|
|
||||||
file_source: ./pleroma-${CI_REPO_DEFAULT_BRANCH}-${CI_COMMIT_SHA:0:8}-amd64-musl.zip
|
|
||||||
file_name: ./pleroma-${CI_REPO_DEFAULT_BRANCH}-${CI_COMMIT_SHA:0:8}-amd64-musl.zip
|
|
||||||
|
|
||||||
otp-develop-arm64-musl:
|
|
||||||
image: docker.io/hexpm/elixir-arm64:1.17.3-erlang-27.3.4.2-alpine-3.22.1
|
|
||||||
when:
|
|
||||||
- evaluate: platform == "linux/arm64"
|
|
||||||
environment:
|
|
||||||
MIX_ENV: prod
|
|
||||||
VIX_COMPILATION_MODE: PLATFORM_PROVIDED_LIBVIPS
|
|
||||||
commands:
|
|
||||||
- apk add git build-base cmake file-dev openssl vips-dev zip
|
|
||||||
- <<: *pleroma_build_cmds
|
|
||||||
- zip -9rq pleroma-${CI_REPO_DEFAULT_BRANCH}-${CI_COMMIT_SHA:0:8}-arm64-musl.zip release
|
|
||||||
|
|
||||||
upload-artifacts-arm64-musl:
|
|
||||||
image: docker.io/woodpeckercommunity/plugin-gitea-package:0.5.0
|
|
||||||
when:
|
|
||||||
- evaluate: platform == "linux/arm64"
|
|
||||||
settings:
|
|
||||||
<<: *artifacts_uploader_settings
|
|
||||||
package_name: pleroma-otp-${CI_REPO_DEFAULT_BRANCH}-arm64-musl
|
|
||||||
package_version: ${CI_REPO_DEFAULT_BRANCH}-${CI_COMMIT_SHA:0:8}-arm64-musl
|
|
||||||
file_source: ./pleroma-${CI_REPO_DEFAULT_BRANCH}-${CI_COMMIT_SHA:0:8}-arm64-musl.zip
|
|
||||||
file_name: ./pleroma-${CI_REPO_DEFAULT_BRANCH}-${CI_COMMIT_SHA:0:8}-arm64-musl.zip
|
|
||||||
|
|
@ -1,83 +0,0 @@
|
||||||
when:
|
|
||||||
- event: push
|
|
||||||
branch: ${CI_REPO_DEFAULT_BRANCH}
|
|
||||||
path: [ "*.ex", "*.eex", "*.exs", "mix.lock", ".woodpecker/**" ]
|
|
||||||
|
|
||||||
matrix:
|
|
||||||
platform:
|
|
||||||
- linux/amd64
|
|
||||||
- linux/arm64
|
|
||||||
|
|
||||||
# This is needed for the when clauses below.
|
|
||||||
# When the platform clause is fixed, this might not be needed anymore
|
|
||||||
labels:
|
|
||||||
platform: ${platform}
|
|
||||||
|
|
||||||
variables:
|
|
||||||
pleroma_build_cmds: &pleroma_build_cmds
|
|
||||||
- echo "import 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}
|
|
||||||
- mix release --path release
|
|
||||||
artifacts_uploader_settings: &artifacts_uploader_settings
|
|
||||||
user:
|
|
||||||
from_secret: pleroma-ci-user
|
|
||||||
password:
|
|
||||||
from_secret: pleroma-ci-password
|
|
||||||
owner: 'pleroma'
|
|
||||||
|
|
||||||
steps:
|
|
||||||
otp-develop-amd64:
|
|
||||||
image: docker.io/hexpm/elixir-amd64:1.17.3-erlang-27.3.4.2-ubuntu-noble-20250716
|
|
||||||
# when:
|
|
||||||
# - platform: linux/amd64
|
|
||||||
# does not work even though it should according to docs
|
|
||||||
# https://github.com/woodpecker-ci/woodpecker/discussions/5367#discussioncomment-13901342
|
|
||||||
when:
|
|
||||||
- evaluate: platform == "linux/amd64"
|
|
||||||
environment:
|
|
||||||
MIX_ENV: prod
|
|
||||||
VIX_COMPILATION_MODE: PLATFORM_PROVIDED_LIBVIPS
|
|
||||||
DEBIAN_FRONTEND: noninteractive
|
|
||||||
commands:
|
|
||||||
- apt-get update && apt-get install -y cmake libmagic-dev libvips-dev erlang-dev git build-essential zip
|
|
||||||
- <<: *pleroma_build_cmds
|
|
||||||
- zip -9rq pleroma-${CI_REPO_DEFAULT_BRANCH}-${CI_COMMIT_SHA:0:8}-amd64.zip release
|
|
||||||
|
|
||||||
upload-artifacts-amd64:
|
|
||||||
image: docker.io/woodpeckercommunity/plugin-gitea-package:0.5.0
|
|
||||||
when:
|
|
||||||
- evaluate: platform == "linux/amd64"
|
|
||||||
settings:
|
|
||||||
<<: *artifacts_uploader_settings
|
|
||||||
package_name: pleroma-otp-${CI_REPO_DEFAULT_BRANCH}-amd64
|
|
||||||
package_version: ${CI_REPO_DEFAULT_BRANCH}-${CI_COMMIT_SHA:0:8}-amd64
|
|
||||||
file_source: ./pleroma-${CI_REPO_DEFAULT_BRANCH}-${CI_COMMIT_SHA:0:8}-amd64.zip
|
|
||||||
file_name: ./pleroma-${CI_REPO_DEFAULT_BRANCH}-${CI_COMMIT_SHA:0:8}-amd64.zip
|
|
||||||
|
|
||||||
otp-develop-arm64:
|
|
||||||
image: docker.io/hexpm/elixir-arm64:1.17.3-erlang-27.3.4.2-ubuntu-noble-20250716
|
|
||||||
when:
|
|
||||||
- evaluate: platform == "linux/arm64"
|
|
||||||
environment:
|
|
||||||
MIX_ENV: prod
|
|
||||||
VIX_COMPILATION_MODE: PLATFORM_PROVIDED_LIBVIPS
|
|
||||||
DEBIAN_FRONTEND: noninteractive
|
|
||||||
commands:
|
|
||||||
- apt-get update && apt-get install -y cmake libmagic-dev libvips-dev erlang-dev git build-essential zip
|
|
||||||
- <<: *pleroma_build_cmds
|
|
||||||
- zip -9rq pleroma-${CI_REPO_DEFAULT_BRANCH}-${CI_COMMIT_SHA:0:8}-arm64.zip release
|
|
||||||
|
|
||||||
upload-artifacts-arm64:
|
|
||||||
image: docker.io/woodpeckercommunity/plugin-gitea-package:0.5.0
|
|
||||||
when:
|
|
||||||
- evaluate: platform == "linux/arm64"
|
|
||||||
settings:
|
|
||||||
<<: *artifacts_uploader_settings
|
|
||||||
package_name: pleroma-otp-${CI_REPO_DEFAULT_BRANCH}-arm64
|
|
||||||
package_version: ${CI_REPO_DEFAULT_BRANCH}-${CI_COMMIT_SHA:0:8}-arm64
|
|
||||||
file_source: ./pleroma-${CI_REPO_DEFAULT_BRANCH}-${CI_COMMIT_SHA:0:8}-arm64.zip
|
|
||||||
file_name: ./pleroma-${CI_REPO_DEFAULT_BRANCH}-${CI_COMMIT_SHA:0:8}-arm64.zip
|
|
||||||
|
|
@ -1,4 +1,7 @@
|
||||||
when:
|
when:
|
||||||
|
- event: push
|
||||||
|
branch: ${CI_REPO_DEFAULT_BRANCH}
|
||||||
|
path: [ "*.ex", "*.eex", "*.exs", "mix.lock", ".woodpecker/**" ]
|
||||||
- event: push
|
- event: push
|
||||||
branch: stable
|
branch: stable
|
||||||
path: [ "*.ex", "*.eex", "*.exs", "mix.lock", ".woodpecker/**" ]
|
path: [ "*.ex", "*.eex", "*.exs", "mix.lock", ".woodpecker/**" ]
|
||||||
|
|
@ -18,7 +21,8 @@ labels:
|
||||||
platform: ${platform}
|
platform: ${platform}
|
||||||
|
|
||||||
variables:
|
variables:
|
||||||
pleroma_build_cmds: &pleroma_build_cmds
|
build_cmds: &build_cmds
|
||||||
|
- apk add git build-base cmake file-dev openssl vips-dev zip
|
||||||
- echo "import Config" > config/prod.secret.exs
|
- echo "import Config" > config/prod.secret.exs
|
||||||
- mix local.hex --force
|
- mix local.hex --force
|
||||||
- mix local.rebar --force
|
- mix local.rebar --force
|
||||||
|
|
@ -26,32 +30,54 @@ variables:
|
||||||
- mkdir release
|
- mkdir release
|
||||||
- export PLEROMA_BUILD_BRANCH=${CI_COMMIT_BRANCH}
|
- export PLEROMA_BUILD_BRANCH=${CI_COMMIT_BRANCH}
|
||||||
- mix release --path release
|
- mix release --path release
|
||||||
|
build_image_amd64: &build_image_amd64 docker.io/hexpm/elixir-amd64:1.17.3-erlang-27.3.4.2-alpine-3.22.1
|
||||||
|
build_image_arm64: &build_image_arm64 docker.io/hexpm/elixir-arm64:1.17.3-erlang-27.3.4.2-alpine-3.22.1
|
||||||
|
artifacts_uploader_image: &artifacts_uploader_image docker.io/woodpeckercommunity/plugin-gitea-package:0.5.0
|
||||||
artifacts_uploader_settings: &artifacts_uploader_settings
|
artifacts_uploader_settings: &artifacts_uploader_settings
|
||||||
user:
|
user:
|
||||||
from_secret: pleroma-ci-user
|
from_secret: pleroma-ci-user
|
||||||
password:
|
password:
|
||||||
from_secret: pleroma-ci-password
|
from_secret: pleroma-ci-password
|
||||||
owner: 'pleroma-test'
|
owner: 'pleroma'
|
||||||
|
env: &env
|
||||||
|
MIX_ENV: prod
|
||||||
|
VIX_COMPILATION_MODE: PLATFORM_PROVIDED_LIBVIPS
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
otp-stable-amd64-musl:
|
otp-develop-amd64-musl:
|
||||||
image: docker.io/hexpm/elixir-amd64:1.17.3-erlang-27.3.4.2-alpine-3.22.1
|
image: *build_image_amd64
|
||||||
# when:
|
|
||||||
# - platform: linux/amd64
|
|
||||||
# does not work even though it should according to docs
|
|
||||||
# https://github.com/woodpecker-ci/woodpecker/discussions/5367#discussioncomment-13901342
|
|
||||||
when:
|
when:
|
||||||
- evaluate: platform == "linux/amd64"
|
- evaluate: 'platform == "linux/amd64" && CI_COMMIT_BRANCH == "${CI_REPO_DEFAULT_BRANCH}"'
|
||||||
environment:
|
environment: *env
|
||||||
MIX_ENV: prod
|
commands: &amd64_build
|
||||||
VIX_COMPILATION_MODE: PLATFORM_PROVIDED_LIBVIPS
|
- <<: *build_cmds
|
||||||
commands:
|
|
||||||
- apk add git build-base cmake file-dev openssl vips-dev zip
|
|
||||||
- <<: *pleroma_build_cmds
|
|
||||||
- zip -9rq pleroma-${CI_COMMIT_BRANCH}-${CI_COMMIT_SHA:0:8}-amd64-musl.zip release
|
- zip -9rq pleroma-${CI_COMMIT_BRANCH}-${CI_COMMIT_SHA:0:8}-amd64-musl.zip release
|
||||||
|
|
||||||
|
otp-stable-amd64-musl:
|
||||||
|
image: *build_image_amd64
|
||||||
|
when:
|
||||||
|
- evaluate: 'platform == "linux/amd64" && CI_COMMIT_BRANCH == "stable"'
|
||||||
|
environment: *env
|
||||||
|
commands: *amd64_build
|
||||||
|
|
||||||
|
otp-develop-arm64-musl:
|
||||||
|
image: *build_image_arm64
|
||||||
|
when:
|
||||||
|
- evaluate: 'platform == "linux/arm64" && CI_COMMIT_BRANCH == "${CI_REPO_DEFAULT_BRANCH}"'
|
||||||
|
environment: *env
|
||||||
|
commands: &arm64_build
|
||||||
|
- <<: *build_cmds
|
||||||
|
- zip -9rq pleroma-${CI_COMMIT_BRANCH}-${CI_COMMIT_SHA:0:8}-arm64-musl.zip release
|
||||||
|
|
||||||
|
otp-stable-arm64-musl:
|
||||||
|
image: *build_image_arm64
|
||||||
|
when:
|
||||||
|
- evaluate: 'platform == "linux/arm64" && CI_COMMIT_BRANCH == "stable"'
|
||||||
|
environment: *env
|
||||||
|
commands: *arm64_build
|
||||||
|
|
||||||
upload-artifacts-amd64-musl:
|
upload-artifacts-amd64-musl:
|
||||||
image: docker.io/woodpeckercommunity/plugin-gitea-package:0.5.0
|
image: *artifacts_uploader_image
|
||||||
when:
|
when:
|
||||||
- evaluate: platform == "linux/amd64"
|
- evaluate: platform == "linux/amd64"
|
||||||
settings:
|
settings:
|
||||||
|
|
@ -61,20 +87,8 @@ steps:
|
||||||
file_source: ./pleroma-${CI_COMMIT_BRANCH}-${CI_COMMIT_SHA:0:8}-amd64-musl.zip
|
file_source: ./pleroma-${CI_COMMIT_BRANCH}-${CI_COMMIT_SHA:0:8}-amd64-musl.zip
|
||||||
file_name: ./pleroma-${CI_COMMIT_BRANCH}-${CI_COMMIT_SHA:0:8}-amd64-musl.zip
|
file_name: ./pleroma-${CI_COMMIT_BRANCH}-${CI_COMMIT_SHA:0:8}-amd64-musl.zip
|
||||||
|
|
||||||
otp-stable-arm64-musl:
|
|
||||||
image: docker.io/hexpm/elixir-arm64:1.17.3-erlang-27.3.4.2-alpine-3.22.1
|
|
||||||
when:
|
|
||||||
- evaluate: platform == "linux/arm64"
|
|
||||||
environment:
|
|
||||||
MIX_ENV: prod
|
|
||||||
VIX_COMPILATION_MODE: PLATFORM_PROVIDED_LIBVIPS
|
|
||||||
commands:
|
|
||||||
- apk add git build-base cmake file-dev openssl vips-dev zip
|
|
||||||
- <<: *pleroma_build_cmds
|
|
||||||
- zip -9rq pleroma-${CI_COMMIT_BRANCH}-${CI_COMMIT_SHA:0:8}-arm64-musl.zip release
|
|
||||||
|
|
||||||
upload-artifacts-arm64-musl:
|
upload-artifacts-arm64-musl:
|
||||||
image: docker.io/woodpeckercommunity/plugin-gitea-package:0.5.0
|
image: *artifacts_uploader_image
|
||||||
when:
|
when:
|
||||||
- evaluate: platform == "linux/arm64"
|
- evaluate: platform == "linux/arm64"
|
||||||
settings:
|
settings:
|
||||||
|
|
@ -1,4 +1,7 @@
|
||||||
when:
|
when:
|
||||||
|
- event: push
|
||||||
|
branch: ${CI_REPO_DEFAULT_BRANCH}
|
||||||
|
path: [ "*.ex", "*.eex", "*.exs", "mix.lock", ".woodpecker/**" ]
|
||||||
- event: push
|
- event: push
|
||||||
branch: stable
|
branch: stable
|
||||||
path: [ "*.ex", "*.eex", "*.exs", "mix.lock", ".woodpecker/**" ]
|
path: [ "*.ex", "*.eex", "*.exs", "mix.lock", ".woodpecker/**" ]
|
||||||
|
|
@ -18,7 +21,8 @@ labels:
|
||||||
platform: ${platform}
|
platform: ${platform}
|
||||||
|
|
||||||
variables:
|
variables:
|
||||||
pleroma_build_cmds: &pleroma_build_cmds
|
build_cmds: &build_cmds
|
||||||
|
- apt-get update && apt-get install -y cmake libmagic-dev libvips-dev erlang-dev git build-essential zip
|
||||||
- echo "import Config" > config/prod.secret.exs
|
- echo "import Config" > config/prod.secret.exs
|
||||||
- mix local.hex --force
|
- mix local.hex --force
|
||||||
- mix local.rebar --force
|
- mix local.rebar --force
|
||||||
|
|
@ -26,33 +30,55 @@ variables:
|
||||||
- mkdir release
|
- mkdir release
|
||||||
- export PLEROMA_BUILD_BRANCH=${CI_COMMIT_BRANCH}
|
- export PLEROMA_BUILD_BRANCH=${CI_COMMIT_BRANCH}
|
||||||
- mix release --path release
|
- mix release --path release
|
||||||
|
build_image_amd64: &build_image_amd64 docker.io/hexpm/elixir-amd64:1.17.3-erlang-27.3.4.2-ubuntu-noble-20250716
|
||||||
|
build_image_arm64: &build_image_arm64 docker.io/hexpm/elixir-arm64:1.17.3-erlang-27.3.4.2-ubuntu-noble-20250716
|
||||||
|
artifacts_uploader_image: &artifacts_uploader_image docker.io/woodpeckercommunity/plugin-gitea-package:0.5.0
|
||||||
artifacts_uploader_settings: &artifacts_uploader_settings
|
artifacts_uploader_settings: &artifacts_uploader_settings
|
||||||
user:
|
user:
|
||||||
from_secret: pleroma-ci-user
|
from_secret: pleroma-ci-user
|
||||||
password:
|
password:
|
||||||
from_secret: pleroma-ci-password
|
from_secret: pleroma-ci-password
|
||||||
owner: 'pleroma-test'
|
owner: 'pleroma'
|
||||||
|
env: &env
|
||||||
|
MIX_ENV: prod
|
||||||
|
VIX_COMPILATION_MODE: PLATFORM_PROVIDED_LIBVIPS
|
||||||
|
DEBIAN_FRONTEND: noninteractive
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
otp-stable-amd64:
|
otp-develop-amd64:
|
||||||
image: docker.io/hexpm/elixir-amd64:1.17.3-erlang-27.3.4.2-ubuntu-noble-20250716
|
image: *build_image_amd64
|
||||||
# when:
|
|
||||||
# - platform: linux/amd64
|
|
||||||
# does not work even though it should according to docs
|
|
||||||
# https://github.com/woodpecker-ci/woodpecker/discussions/5367#discussioncomment-13901342
|
|
||||||
when:
|
when:
|
||||||
- evaluate: platform == "linux/amd64"
|
- evaluate: 'platform == "linux/amd64" && CI_COMMIT_BRANCH == "${CI_REPO_DEFAULT_BRANCH}"'
|
||||||
environment:
|
environment: *env
|
||||||
MIX_ENV: prod
|
commands: &amd64_build
|
||||||
VIX_COMPILATION_MODE: PLATFORM_PROVIDED_LIBVIPS
|
- <<: *build_cmds
|
||||||
DEBIAN_FRONTEND: noninteractive
|
|
||||||
commands:
|
|
||||||
- apt-get update && apt-get install -y cmake libmagic-dev libvips-dev erlang-dev git build-essential zip
|
|
||||||
- <<: *pleroma_build_cmds
|
|
||||||
- zip -9rq pleroma-${CI_COMMIT_BRANCH}-${CI_COMMIT_SHA:0:8}-amd64.zip release
|
- zip -9rq pleroma-${CI_COMMIT_BRANCH}-${CI_COMMIT_SHA:0:8}-amd64.zip release
|
||||||
|
|
||||||
|
otp-stable-amd64:
|
||||||
|
image: *build_image_amd64
|
||||||
|
when:
|
||||||
|
- evaluate: 'platform == "linux/amd64" && CI_COMMIT_BRANCH == "stable"'
|
||||||
|
environment: *env
|
||||||
|
commands: *amd64_build
|
||||||
|
|
||||||
|
otp-develop-arm64:
|
||||||
|
image: *build_image_arm64
|
||||||
|
when:
|
||||||
|
- evaluate: 'platform == "linux/arm64" && CI_COMMIT_BRANCH == "${CI_REPO_DEFAULT_BRANCH}"'
|
||||||
|
environment: *env
|
||||||
|
commands: &arm64_build
|
||||||
|
- <<: *build_cmds
|
||||||
|
- zip -9rq pleroma-${CI_COMMIT_BRANCH}-${CI_COMMIT_SHA:0:8}-arm64.zip release
|
||||||
|
|
||||||
|
otp-stable-arm64:
|
||||||
|
image: *build_image_arm64
|
||||||
|
when:
|
||||||
|
- evaluate: 'platform == "linux/arm64" && CI_COMMIT_BRANCH == "stable"'
|
||||||
|
environment: *env
|
||||||
|
commands: *arm64_build
|
||||||
|
|
||||||
upload-artifacts-amd64:
|
upload-artifacts-amd64:
|
||||||
image: docker.io/woodpeckercommunity/plugin-gitea-package:0.5.0
|
image: *artifacts_uploader_image
|
||||||
when:
|
when:
|
||||||
- evaluate: platform == "linux/amd64"
|
- evaluate: platform == "linux/amd64"
|
||||||
settings:
|
settings:
|
||||||
|
|
@ -62,21 +88,8 @@ steps:
|
||||||
file_source: ./pleroma-${CI_COMMIT_BRANCH}-${CI_COMMIT_SHA:0:8}-amd64.zip
|
file_source: ./pleroma-${CI_COMMIT_BRANCH}-${CI_COMMIT_SHA:0:8}-amd64.zip
|
||||||
file_name: ./pleroma-${CI_COMMIT_BRANCH}-${CI_COMMIT_SHA:0:8}-amd64.zip
|
file_name: ./pleroma-${CI_COMMIT_BRANCH}-${CI_COMMIT_SHA:0:8}-amd64.zip
|
||||||
|
|
||||||
otp-stable-arm64:
|
|
||||||
image: docker.io/hexpm/elixir-arm64:1.17.3-erlang-27.3.4.2-ubuntu-noble-20250716
|
|
||||||
when:
|
|
||||||
- evaluate: platform == "linux/arm64"
|
|
||||||
environment:
|
|
||||||
MIX_ENV: prod
|
|
||||||
VIX_COMPILATION_MODE: PLATFORM_PROVIDED_LIBVIPS
|
|
||||||
DEBIAN_FRONTEND: noninteractive
|
|
||||||
commands:
|
|
||||||
- apt-get update && apt-get install -y cmake libmagic-dev libvips-dev erlang-dev git build-essential zip
|
|
||||||
- <<: *pleroma_build_cmds
|
|
||||||
- zip -9rq pleroma-${CI_COMMIT_BRANCH}-${CI_COMMIT_SHA:0:8}-arm64.zip release
|
|
||||||
|
|
||||||
upload-artifacts-arm64:
|
upload-artifacts-arm64:
|
||||||
image: docker.io/woodpeckercommunity/plugin-gitea-package:0.5.0
|
image: *artifacts_uploader_image
|
||||||
when:
|
when:
|
||||||
- evaluate: platform == "linux/arm64"
|
- evaluate: platform == "linux/arm64"
|
||||||
settings:
|
settings:
|
||||||
Loading…
Add table
Add a link
Reference in a new issue