akkoma/.woodpecker/build-arm64.yml

90 lines
2.4 KiB
YAML
Raw Normal View History

2023-07-20 16:27:58 +00:00
platform: linux/arm64
2023-07-20 16:02:41 +00:00
2023-07-20 16:29:23 +00:00
depends_on:
- test
variables:
- &scw-secrets
- SCW_ACCESS_KEY
- SCW_SECRET_KEY
- SCW_DEFAULT_ORGANIZATION_ID
- &setup-hex "mix local.hex --force && mix local.rebar --force"
- &on-release
when:
event:
- push
- tag
branch:
- stable
2023-07-27 13:21:44 +00:00
- develop
- &on-stable
when:
event:
- push
- tag
branch:
- stable
- &on-pr-open
when:
event:
- pull_request
- &tag-build "export BUILD_TAG=$${CI_COMMIT_TAG:-\"$CI_COMMIT_BRANCH\"} && export PLEROMA_BUILD_BRANCH=$BUILD_TAG"
- &clean "(rm -rf release || true) && (rm -rf _build || true) && (rm -rf /root/.mix)"
2022-07-27 22:29:34 +00:00
- &mix-clean "mix deps.clean --all && mix clean"
pipeline:
2023-07-20 16:27:58 +00:00
# Canonical arm64
2023-08-04 19:37:17 +00:00
debian-bookworm:
2023-08-09 13:39:28 +00:00
image: hexpm/elixir:1.15.4-erlang-26.0.2-debian-bookworm-20230612
<<: *on-release
environment:
MIX_ENV: prod
DEBIAN_FRONTEND: noninteractive
commands:
- apt-get update && apt-get install -y cmake libmagic-dev rclone zip imagemagick libmagic-dev git build-essential g++ wget
- *clean
- echo "import Config" > config/prod.secret.exs
- *setup-hex
- *tag-build
- mix deps.get --only prod
- mix release --path release
2023-08-04 19:37:17 +00:00
- zip akkoma-arm64.zip -r release
2023-08-04 19:37:17 +00:00
release-debian-bookworm:
2023-07-20 16:27:58 +00:00
image: akkoma/releaser:arm64
<<: *on-release
secrets: *scw-secrets
commands:
2023-08-04 19:37:17 +00:00
- export SOURCE=akkoma-arm64.zip
2023-07-20 16:27:58 +00:00
- export DEST=scaleway:akkoma-updates/$${CI_COMMIT_TAG:-"$CI_COMMIT_BRANCH"}/akkoma-arm64-ubuntu-jammy.zip
- /bin/sh /entrypoint.sh
2023-07-20 16:27:58 +00:00
- export DEST=scaleway:akkoma-updates/$${CI_COMMIT_TAG:-"$CI_COMMIT_BRANCH"}/akkoma-arm64.zip
- /bin/sh /entrypoint.sh
2023-07-20 16:27:58 +00:00
# Canonical arm64-musl
musl:
2023-08-09 13:39:28 +00:00
image: hexpm/elixir:1.15.4-erlang-26.0.2-alpine-3.18.2
2023-07-27 13:21:12 +00:00
<<: *on-stable
environment:
MIX_ENV: prod
commands:
- apk add git gcc g++ musl-dev make cmake file-dev rclone wget zip imagemagick
- *clean
- *setup-hex
2022-07-27 22:29:34 +00:00
- *mix-clean
- *tag-build
- mix deps.get --only prod
- mix release --path release
2023-07-20 16:27:58 +00:00
- zip akkoma-arm64-musl.zip -r release
release-musl:
2023-07-20 16:27:58 +00:00
image: akkoma/releaser:arm64
2023-07-27 13:21:12 +00:00
<<: *on-stable
secrets: *scw-secrets
commands:
2023-07-20 16:27:58 +00:00
- export SOURCE=akkoma-arm64-musl.zip
- export DEST=scaleway:akkoma-updates/$${CI_COMMIT_TAG:-"$CI_COMMIT_BRANCH"}/akkoma-arm64-musl.zip
- /bin/sh /entrypoint.sh