From 800c4bc4426d9a6c261cc3c40a0700e4ad3b2484 Mon Sep 17 00:00:00 2001 From: FloatingGhost Date: Thu, 27 Jul 2023 14:21:12 +0100 Subject: [PATCH] correct build conditions --- .woodpecker/build-amd64.yml | 11 ++--------- .woodpecker/build-arm64.yml | 14 ++++---------- docs/docs/installation/otp_en.md | 2 +- 3 files changed, 7 insertions(+), 20 deletions(-) diff --git a/.woodpecker/build-amd64.yml b/.woodpecker/build-amd64.yml index b73d1b5d4..ff29daa61 100644 --- a/.woodpecker/build-amd64.yml +++ b/.woodpecker/build-amd64.yml @@ -24,13 +24,6 @@ variables: - tag branch: - stable - - &on-point-release - when: - event: - - push - branch: - - develop - - stable - &on-pr-open when: event: @@ -101,7 +94,7 @@ pipeline: # Canonical amd64-musl musl: image: hexpm/elixir:1.14.3-erlang-25.2.2-alpine-3.18.0 - <<: *on-point-release + <<: *on-stable environment: MIX_ENV: prod commands: @@ -116,7 +109,7 @@ pipeline: release-musl: image: akkoma/releaser - <<: *on-point-release + <<: *on-stable secrets: *scw-secrets commands: - export SOURCE=akkoma-amd64-musl.zip diff --git a/.woodpecker/build-arm64.yml b/.woodpecker/build-arm64.yml index ec1300cec..0fae85945 100644 --- a/.woodpecker/build-arm64.yml +++ b/.woodpecker/build-arm64.yml @@ -23,12 +23,6 @@ variables: - tag branch: - stable - - &on-point-release - when: - event: - - push - branch: - - stable - &on-pr-open when: event: @@ -70,7 +64,7 @@ pipeline: debian-bullseye: image: hexpm/elixir:1.14.3-erlang-25.2.2-debian-bullseye-20230109 - <<: *on-point-release + <<: *on-stable environment: MIX_ENV: prod DEBIAN_FRONTEND: noninteractive @@ -87,7 +81,7 @@ pipeline: release-debian: image: akkoma/releaser:arm64 - <<: *on-point-release + <<: *on-stable secrets: *scw-secrets commands: - export SOURCE=akkoma-arm64.zip @@ -99,7 +93,7 @@ pipeline: # Canonical arm64-musl musl: image: hexpm/elixir:1.14.3-erlang-25.2.2-alpine-3.18.0 - <<: *on-point-release + <<: *on-stable environment: MIX_ENV: prod commands: @@ -114,7 +108,7 @@ pipeline: release-musl: image: akkoma/releaser:arm64 - <<: *on-point-release + <<: *on-stable secrets: *scw-secrets commands: - export SOURCE=akkoma-arm64-musl.zip diff --git a/docs/docs/installation/otp_en.md b/docs/docs/installation/otp_en.md index 4a87e17d5..3f3129193 100644 --- a/docs/docs/installation/otp_en.md +++ b/docs/docs/installation/otp_en.md @@ -24,7 +24,7 @@ Use the following mapping to figure out your flavour: | debian bullseye | amd64 | amd64 | develop, stable | | debian bullseye | arm64 | arm64 | stable | | ubuntu focal | amd64 | amd64 | develop, stable | -| ubuntu focal | arm64 | arm64 | stable | +| ubuntu focal | arm64 | arm64 | develop, stable | | ubuntu jammy | amd64 | amd64-ubuntu-jammy | develop, stable | | ubuntu jammy | arm64 | arm64-ubuntu-jammy | stable | | alpine | amd64 | amd64-musl | stable |