X-Git-Url: https://git.squeep.com/?a=blobdiff_plain;f=.woodpecker%2F.release.yml;h=e672c1251e1b26c7886efe033d2dac58aab9b6b4;hb=ff16840cc8fac0f2ae9d183b4e5d5e5fae530a9e;hp=34c7dcb37737eea8065ebdfced2cebd4a1e1e7ae;hpb=6aa81ad7167f61e9239f85a24f9845d2ffb3ed26;p=akkoma diff --git a/.woodpecker/.release.yml b/.woodpecker/.release.yml index 34c7dcb37..e672c1251 100644 --- a/.woodpecker/.release.yml +++ b/.woodpecker/.release.yml @@ -1,74 +1,58 @@ -matrix: - docker_prefix: - - "" - - arm64v8/ - - arm32v7/ - tag: - - amd64 - - arm64 - - arm +variables: + - &scw-secrets + - SCW_ACCESS_KEY + - SCW_SECRET_KEY + - SCW_DEFAULT_ORGANIZATION_ID + - &setup-scw-s3 "wget https://github.com/scaleway/scaleway-cli/releases/download/v2.5.1/scaleway-cli_2.5.1_linux_amd64 && mv scaleway-cli_2.5.1_linux_amd64 scaleway-cli && chmod +x scaleway-cli && ./scaleway-cli object config install type=rclone" + + - &setup-hex "mix local.hex --force && mix local.rebar --force" + - &build-on + when: + event: + - push + - tag + branch: + - develop + - stable + - refs/tags/v* + - refs/tags/stable-* + - &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) && (rm scaleway-cli || true) && (mix deps.clean --all || true)" - include: - - tag: amd64 - docker_prefix: "" pipeline: glibc: - when: - event: - - push - secrets: - - SCW_ACCESS_KEY - - SCW_SECRET_KEY - - SCW_DEFAULT_ORGANIZATION_ID - image: ${docker_prefix}elixir:1.13 + image: elixir:1.13 + <<: *build-on + secrets: *scw-secrets environment: MIX_ENV: prod commands: - - apt-get update && apt-get install -y cmake libmagic-dev rclone zip - - wget https://github.com/scaleway/scaleway-cli/releases/download/v2.5.1/scaleway-cli_2.5.1_linux_amd64 - - mv scaleway-cli_2.5.1_linux_amd64 scaleway-cli - - chmod +x scaleway-cli - - ./scaleway-cli object config install type=rclone + - apt-get update && apt-get install -y cmake libmagic-dev rclone zip imagemagick libmagic-dev git + - *clean + - *setup-scw-s3 - echo "import Mix.Config" > config/prod.secret.exs - - mix local.hex --force - - mix local.rebar --force - - mix deps.clean --all + - *setup-hex + - *tag-build - mix deps.get --only prod - - mkdir release - - export PLEROMA_BUILD_BRANCH=develop - mix release --path release - zip akkoma-${tag}.zip -r release - - rclone copyto akkoma-${tag}.zip scaleway:akkoma-updates/develop/akkoma-${tag}.zip + - rclone copyto akkoma-${tag}.zip scaleway:akkoma-updates/$BUILD_TAG/akkoma-${tag}.zip musl: - when: - event: - - push - secrets: - - SCW_ACCESS_KEY - - SCW_SECRET_KEY - - SCW_DEFAULT_ORGANIZATION_ID - group: release - image: ${docker_prefix}elixir:1.13-alpine + image: elixir:1.13-alpine + <<: *build-on + secrets: *scw-secrets environment: MIX_ENV: prod commands: - - apk add git gcc g++ musl-dev make cmake file-dev rclone wget zip - - rm -rf release || true - - rm -rf _build || true - - rm -rf /root/.mix - - rm scaleway-cli || true - - wget https://github.com/scaleway/scaleway-cli/releases/download/v2.5.1/scaleway-cli_2.5.1_linux_amd64 - - mv scaleway-cli_2.5.1_linux_amd64 scaleway-cli - - chmod +x scaleway-cli - - ./scaleway-cli object config install type=rclone - - - mix local.hex --force - - mix local.rebar --force - - mix deps.clean --all + - apk add git gcc g++ musl-dev make cmake file-dev rclone wget zip imagemagick + - *clean + - *setup-scw-s3 + - *setup-hex + - *tag-build - mix deps.get --only prod - mix release --path release - - export PLEROMA_BUILD_BRANCH=develop - zip akkoma-${tag}.zip -r release - - rclone copyto akkoma-${tag}.zip scaleway:akkoma-updates/develop/akkoma-${tag}-musl.zip + - rclone copyto akkoma-${tag}.zip scaleway:akkoma-updates/$BUILD_TAG/akkoma-${tag}-musl.zip