-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
381 changed files
with
124,509 additions
and
8,061 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,89 @@ | ||
platform: linux/arm64 | ||
|
||
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 | ||
- 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)" | ||
- &mix-clean "mix deps.clean --all && mix clean" | ||
|
||
pipeline: | ||
# Canonical arm64 | ||
debian-bookworm: | ||
image: hexpm/elixir:1.15.4-erlang-25.3.2.5-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 | ||
- zip akkoma-arm64.zip -r release | ||
|
||
release-debian-bookworm: | ||
image: akkoma/releaser:arm64 | ||
<<: *on-release | ||
secrets: *scw-secrets | ||
commands: | ||
- export SOURCE=akkoma-arm64.zip | ||
- export DEST=scaleway:akkoma-updates/$${CI_COMMIT_TAG:-"$CI_COMMIT_BRANCH"}/akkoma-arm64-ubuntu-jammy.zip | ||
- /bin/sh /entrypoint.sh | ||
- export DEST=scaleway:akkoma-updates/$${CI_COMMIT_TAG:-"$CI_COMMIT_BRANCH"}/akkoma-arm64.zip | ||
- /bin/sh /entrypoint.sh | ||
|
||
# Canonical arm64-musl | ||
musl: | ||
image: hexpm/elixir:1.15.4-erlang-25.3.2.5-alpine-3.18.2 | ||
<<: *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 | ||
- *mix-clean | ||
- *tag-build | ||
- mix deps.get --only prod | ||
- mix release --path release | ||
- zip akkoma-arm64-musl.zip -r release | ||
|
||
release-musl: | ||
image: akkoma/releaser:arm64 | ||
<<: *on-stable | ||
secrets: *scw-secrets | ||
commands: | ||
- 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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,69 @@ | ||
platform: linux/amd64 | ||
|
||
depends_on: | ||
- test | ||
- build-amd64 | ||
|
||
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: | ||
- develop | ||
- stable | ||
- refs/tags/v* | ||
- refs/tags/stable-* | ||
- &on-stable | ||
when: | ||
event: | ||
- push | ||
- tag | ||
branch: | ||
- stable | ||
- refs/tags/stable-* | ||
- &on-point-release | ||
when: | ||
event: | ||
- push | ||
branch: | ||
- develop | ||
- 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)" | ||
- &mix-clean "mix deps.clean --all && mix clean" | ||
|
||
pipeline: | ||
docs: | ||
<<: *on-point-release | ||
secrets: | ||
- SCW_ACCESS_KEY | ||
- SCW_SECRET_KEY | ||
- SCW_DEFAULT_ORGANIZATION_ID | ||
environment: | ||
CI: "true" | ||
image: python:3.10-slim | ||
commands: | ||
- apt-get update && apt-get install -y rclone wget git 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 | ||
- cd docs | ||
- pip install -r requirements.txt | ||
- mkdocs build | ||
- zip -r docs.zip site/* | ||
- cd site | ||
- rclone copy . scaleway:akkoma-docs/$CI_COMMIT_BRANCH/ |
Oops, something went wrong.