2024-06-19 16:40:47 -05:00
|
|
|
---
|
|
|
|
#############
|
2024-08-30 03:44:58 -05:00
|
|
|
### Poke ###
|
2024-06-19 16:40:47 -05:00
|
|
|
#############
|
2024-06-10 17:44:54 -05:00
|
|
|
kind: pipeline # https://docs.drone.io/pipeline/overview/
|
|
|
|
type: exec # https://docs.drone.io/pipeline/exec/overview/
|
2024-06-19 16:40:47 -05:00
|
|
|
name: Build Images for ARM64
|
2024-06-07 15:14:32 -05:00
|
|
|
|
2024-06-10 17:44:54 -05:00
|
|
|
# Do not clone the Docker Build Automation, it is not needed.
|
|
|
|
# https://docs.drone.io/pipeline/exec/syntax/cloning/#custom-logic
|
|
|
|
clone:
|
|
|
|
disable: true
|
|
|
|
|
2024-06-10 17:53:22 -05:00
|
|
|
# Set Platform
|
|
|
|
# https://docs.drone.io/pipeline/exec/syntax/platform/
|
|
|
|
platform:
|
|
|
|
os: linux
|
|
|
|
arch: arm64
|
|
|
|
|
|
|
|
steps:
|
2024-06-19 18:28:59 -05:00
|
|
|
- name: Poke
|
|
|
|
failure: ignore
|
|
|
|
environment:
|
|
|
|
ARK_USERNAME:
|
|
|
|
from_secret: ARK_USERNAME
|
|
|
|
ARK_PASSWORD:
|
|
|
|
from_secret: ARK_PASSWORD
|
|
|
|
CODEBERG_USERNAME:
|
|
|
|
from_secret: CODEBERG_USERNAME
|
|
|
|
CODEBERG_PASSWORD:
|
|
|
|
from_secret: CODEBERG_PASSWORD
|
|
|
|
commands:
|
|
|
|
- git clone https://codeberg.org/ashley/poke && cd ./poke/
|
|
|
|
- echo $ARK_PASSWORD | docker login ark.sudovanilla.org --username $ARK_USERNAME --password-stdin
|
|
|
|
- echo $CODEBERG_PASSWORD | docker login codeberg.org --username $CODEBERG_USERNAME --password-stdin
|
|
|
|
|
|
|
|
- docker build -t codeberg.org/korbs/poke:arm64 .
|
2024-06-23 21:45:16 -05:00
|
|
|
- docker build -t codeberg.org/poketube/poke:arm64 .
|
2024-06-19 18:28:59 -05:00
|
|
|
- docker build -t ark.sudovanilla.org/korbs/poke:arm64 .
|
|
|
|
|
|
|
|
- docker push codeberg.org/korbs/poke:arm64
|
2024-06-23 21:45:16 -05:00
|
|
|
- docker push codeberg.org/poketube/poke:arm64
|
|
|
|
- docker push ark.sudovanilla.org/korbs/poke:arm64
|
2024-06-19 18:28:59 -05:00
|
|
|
|
2024-08-30 03:44:58 -05:00
|
|
|
---
|
|
|
|
###################
|
|
|
|
### Debian Slim ###
|
|
|
|
###################
|
|
|
|
kind: pipeline # https://docs.drone.io/pipeline/overview/
|
|
|
|
type: exec # https://docs.drone.io/pipeline/exec/overview/
|
|
|
|
name: Build Images for ARM64
|
|
|
|
|
|
|
|
# Do not clone the Docker Build Automation, it is not needed.
|
|
|
|
# https://docs.drone.io/pipeline/exec/syntax/cloning/#custom-logic
|
|
|
|
clone:
|
|
|
|
disable: true
|
|
|
|
|
|
|
|
# Set Platform
|
|
|
|
# https://docs.drone.io/pipeline/exec/syntax/platform/
|
|
|
|
platform:
|
|
|
|
os: linux
|
|
|
|
arch: arm64
|
|
|
|
|
2024-06-19 16:40:47 -05:00
|
|
|
- name: "Debian Slim"
|
|
|
|
failure: ignore
|
|
|
|
environment:
|
|
|
|
ARK_USERNAME:
|
|
|
|
from_secret: ARK_USERNAME
|
|
|
|
ARK_PASSWORD:
|
|
|
|
from_secret: ARK_PASSWORD
|
|
|
|
CODEBERG_USERNAME:
|
|
|
|
from_secret: CODEBERG_USERNAME
|
|
|
|
CODEBERG_PASSWORD:
|
|
|
|
from_secret: CODEBERG_PASSWORD
|
|
|
|
commands:
|
|
|
|
- git clone https://github.com/linuxcontainers/debian-slim && cd ./debian-slim/
|
|
|
|
- echo $ARK_PASSWORD | docker login ark.sudovanilla.org --username $ARK_USERNAME --password-stdin
|
|
|
|
- echo $CODEBERG_PASSWORD | docker login codeberg.org --username $CODEBERG_USERNAME --password-stdin
|
2024-06-19 17:26:44 -05:00
|
|
|
|
2024-06-19 16:40:47 -05:00
|
|
|
- docker build -t ark.sudovanilla.org/korbs/debian-slim:arm64 .
|
|
|
|
- docker build -t codeberg.org/korbs/debian-slim:arm64 .
|
2024-06-19 17:26:44 -05:00
|
|
|
|
2024-06-19 16:40:47 -05:00
|
|
|
- docker push ark.sudovanilla.org/korbs/debian-slim:arm64
|
|
|
|
- docker push codeberg.org/korbs/debian-slim:arm64
|
|
|
|
|
2024-08-30 03:44:58 -05:00
|
|
|
---
|
|
|
|
###################
|
|
|
|
### Aptabase ###
|
|
|
|
###################
|
|
|
|
kind: pipeline # https://docs.drone.io/pipeline/overview/
|
|
|
|
type: exec # https://docs.drone.io/pipeline/exec/overview/
|
|
|
|
name: Build Images for ARM64
|
|
|
|
|
|
|
|
# Do not clone the Docker Build Automation, it is not needed.
|
|
|
|
# https://docs.drone.io/pipeline/exec/syntax/cloning/#custom-logic
|
|
|
|
clone:
|
|
|
|
disable: true
|
|
|
|
|
|
|
|
# Set Platform
|
|
|
|
# https://docs.drone.io/pipeline/exec/syntax/platform/
|
|
|
|
platform:
|
|
|
|
os: linux
|
|
|
|
arch: arm64
|
|
|
|
|
2024-06-12 21:44:25 -05:00
|
|
|
- name: "Aptabase"
|
2024-06-19 16:40:47 -05:00
|
|
|
failure: ignore
|
2024-06-12 21:44:25 -05:00
|
|
|
environment:
|
|
|
|
ARK_USERNAME:
|
|
|
|
from_secret: ARK_USERNAME
|
|
|
|
ARK_PASSWORD:
|
|
|
|
from_secret: ARK_PASSWORD
|
|
|
|
CODEBERG_USERNAME:
|
|
|
|
from_secret: CODEBERG_USERNAME
|
|
|
|
CODEBERG_PASSWORD:
|
|
|
|
from_secret: CODEBERG_PASSWORD
|
|
|
|
commands:
|
|
|
|
- git clone https://github.com/aptabase/aptabase && cd ./aptabase/
|
|
|
|
- echo $ARK_PASSWORD | docker login ark.sudovanilla.org --username $ARK_USERNAME --password-stdin
|
|
|
|
- echo $CODEBERG_PASSWORD | docker login codeberg.org --username $CODEBERG_USERNAME --password-stdin
|
2024-06-19 17:26:44 -05:00
|
|
|
|
2024-06-12 21:44:25 -05:00
|
|
|
- docker build -t ark.sudovanilla.org/korbs/aptabase:arm64 .
|
2024-06-12 21:48:23 -05:00
|
|
|
- docker build -t codeberg.org/korbs/aptabase:arm64 .
|
2024-06-19 17:26:44 -05:00
|
|
|
|
2024-06-12 21:44:25 -05:00
|
|
|
- docker push ark.sudovanilla.org/korbs/aptabase:arm64
|
2024-06-12 21:48:23 -05:00
|
|
|
- docker push codeberg.org/korbs/aptabase:arm64
|
2024-06-12 23:28:58 -05:00
|
|
|
|
2024-08-30 03:44:58 -05:00
|
|
|
---
|
|
|
|
###################
|
|
|
|
### 4get ###
|
|
|
|
###################
|
|
|
|
kind: pipeline # https://docs.drone.io/pipeline/overview/
|
|
|
|
type: exec # https://docs.drone.io/pipeline/exec/overview/
|
|
|
|
name: Build Images for ARM64
|
|
|
|
|
|
|
|
# Do not clone the Docker Build Automation, it is not needed.
|
|
|
|
# https://docs.drone.io/pipeline/exec/syntax/cloning/#custom-logic
|
|
|
|
clone:
|
|
|
|
disable: true
|
|
|
|
|
|
|
|
# Set Platform
|
|
|
|
# https://docs.drone.io/pipeline/exec/syntax/platform/
|
|
|
|
platform:
|
|
|
|
os: linux
|
|
|
|
arch: arm64
|
|
|
|
|
2024-06-19 16:40:47 -05:00
|
|
|
- name: 4get
|
|
|
|
failure: ignore
|
|
|
|
environment:
|
|
|
|
ARK_USERNAME:
|
|
|
|
from_secret: ARK_USERNAME
|
|
|
|
ARK_PASSWORD:
|
|
|
|
from_secret: ARK_PASSWORD
|
|
|
|
CODEBERG_USERNAME:
|
|
|
|
from_secret: CODEBERG_USERNAME
|
|
|
|
CODEBERG_PASSWORD:
|
|
|
|
from_secret: CODEBERG_PASSWORD
|
|
|
|
commands:
|
|
|
|
- git clone https://ark.sudovanilla.org/korbs/4get/ && cd ./4get/
|
|
|
|
- echo $ARK_PASSWORD | docker login ark.sudovanilla.org --username $ARK_USERNAME --password-stdin
|
|
|
|
- echo $CODEBERG_PASSWORD | docker login codeberg.org --username $CODEBERG_USERNAME --password-stdin
|
2024-06-19 17:26:44 -05:00
|
|
|
|
2024-06-19 16:40:47 -05:00
|
|
|
- docker build -t ark.sudovanilla.org/korbs/4get:arm64 .
|
|
|
|
- docker build -t codeberg.org/korbs/4get:arm64 .
|
2024-06-19 17:26:44 -05:00
|
|
|
|
2024-06-19 16:40:47 -05:00
|
|
|
- docker push ark.sudovanilla.org/korbs/4get:arm64
|
|
|
|
- docker push codeberg.org/korbs/4get:arm64
|
|
|
|
|
2024-08-30 03:44:58 -05:00
|
|
|
---
|
|
|
|
###################
|
|
|
|
### Cinny ###
|
|
|
|
###################
|
|
|
|
kind: pipeline # https://docs.drone.io/pipeline/overview/
|
|
|
|
type: exec # https://docs.drone.io/pipeline/exec/overview/
|
|
|
|
name: Build Images for ARM64
|
|
|
|
|
|
|
|
# Do not clone the Docker Build Automation, it is not needed.
|
|
|
|
# https://docs.drone.io/pipeline/exec/syntax/cloning/#custom-logic
|
|
|
|
clone:
|
|
|
|
disable: true
|
|
|
|
|
|
|
|
# Set Platform
|
|
|
|
# https://docs.drone.io/pipeline/exec/syntax/platform/
|
|
|
|
platform:
|
|
|
|
os: linux
|
|
|
|
arch: arm64
|
|
|
|
|
2024-06-19 16:40:47 -05:00
|
|
|
- name: Cinny
|
|
|
|
failure: ignore
|
|
|
|
environment:
|
|
|
|
ARK_USERNAME:
|
|
|
|
from_secret: ARK_USERNAME
|
|
|
|
ARK_PASSWORD:
|
|
|
|
from_secret: ARK_PASSWORD
|
|
|
|
CODEBERG_USERNAME:
|
|
|
|
from_secret: CODEBERG_USERNAME
|
|
|
|
CODEBERG_PASSWORD:
|
|
|
|
from_secret: CODEBERG_PASSWORD
|
|
|
|
commands:
|
|
|
|
- git clone https://github.com/cinnyapp/cinny && cd ./cinny/
|
|
|
|
- echo $ARK_PASSWORD | docker login ark.sudovanilla.org --username $ARK_USERNAME --password-stdin
|
|
|
|
- echo $CODEBERG_PASSWORD | docker login codeberg.org --username $CODEBERG_USERNAME --password-stdin
|
2024-06-19 17:26:44 -05:00
|
|
|
|
2024-06-19 16:40:47 -05:00
|
|
|
- docker build -t ark.sudovanilla.org/korbs/cinny:arm64 .
|
|
|
|
- docker build -t codeberg.org/korbs/cinny:arm64 .
|
2024-06-19 17:26:44 -05:00
|
|
|
|
2024-06-19 16:40:47 -05:00
|
|
|
- docker push ark.sudovanilla.org/korbs/cinny:arm64
|
|
|
|
- docker push codeberg.org/korbs/cinny:arm64
|
|
|
|
|
2024-08-30 03:44:58 -05:00
|
|
|
---
|
|
|
|
###################
|
|
|
|
### Bun ###
|
|
|
|
###################
|
|
|
|
kind: pipeline # https://docs.drone.io/pipeline/overview/
|
|
|
|
type: exec # https://docs.drone.io/pipeline/exec/overview/
|
|
|
|
name: Build Images for ARM64
|
|
|
|
|
|
|
|
# Do not clone the Docker Build Automation, it is not needed.
|
|
|
|
# https://docs.drone.io/pipeline/exec/syntax/cloning/#custom-logic
|
|
|
|
clone:
|
|
|
|
disable: true
|
|
|
|
|
|
|
|
# Set Platform
|
|
|
|
# https://docs.drone.io/pipeline/exec/syntax/platform/
|
|
|
|
platform:
|
|
|
|
os: linux
|
|
|
|
arch: arm64
|
|
|
|
|
2024-06-19 16:40:47 -05:00
|
|
|
- name: Bun
|
|
|
|
failure: ignore
|
|
|
|
environment:
|
|
|
|
ARK_USERNAME:
|
|
|
|
from_secret: ARK_USERNAME
|
|
|
|
ARK_PASSWORD:
|
|
|
|
from_secret: ARK_PASSWORD
|
|
|
|
CODEBERG_USERNAME:
|
|
|
|
from_secret: CODEBERG_USERNAME
|
|
|
|
CODEBERG_PASSWORD:
|
|
|
|
from_secret: CODEBERG_PASSWORD
|
|
|
|
commands:
|
|
|
|
- git clone https://github.com/oven-sh/bun && cd ./bun/dockerhub/debian-slim/
|
|
|
|
- echo $ARK_PASSWORD | docker login ark.sudovanilla.org --username $ARK_USERNAME --password-stdin
|
|
|
|
- echo $CODEBERG_PASSWORD | docker login codeberg.org --username $CODEBERG_USERNAME --password-stdin
|
2024-06-19 17:26:44 -05:00
|
|
|
|
2024-06-19 16:40:47 -05:00
|
|
|
- docker build -t ark.sudovanilla.org/korbs/bun:arm64 .
|
|
|
|
- docker build -t codeberg.org/korbs/bun:arm64 .
|
2024-06-19 17:26:44 -05:00
|
|
|
|
2024-06-19 16:40:47 -05:00
|
|
|
- docker push ark.sudovanilla.org/korbs/bun:arm64
|
|
|
|
- docker push codeberg.org/korbs/bun:arm64
|
|
|
|
|
2024-08-30 03:44:58 -05:00
|
|
|
---
|
|
|
|
###################
|
|
|
|
### Hyperpipe ###
|
|
|
|
###################
|
|
|
|
kind: pipeline # https://docs.drone.io/pipeline/overview/
|
|
|
|
type: exec # https://docs.drone.io/pipeline/exec/overview/
|
|
|
|
name: Build Images for ARM64
|
|
|
|
|
|
|
|
# Do not clone the Docker Build Automation, it is not needed.
|
|
|
|
# https://docs.drone.io/pipeline/exec/syntax/cloning/#custom-logic
|
|
|
|
clone:
|
|
|
|
disable: true
|
|
|
|
|
|
|
|
# Set Platform
|
|
|
|
# https://docs.drone.io/pipeline/exec/syntax/platform/
|
|
|
|
platform:
|
|
|
|
os: linux
|
|
|
|
arch: arm64
|
|
|
|
|
2024-06-19 16:40:47 -05:00
|
|
|
- name: Hyperpipe
|
|
|
|
failure: ignore
|
|
|
|
environment:
|
|
|
|
ARK_USERNAME:
|
|
|
|
from_secret: ARK_USERNAME
|
|
|
|
ARK_PASSWORD:
|
|
|
|
from_secret: ARK_PASSWORD
|
|
|
|
CODEBERG_USERNAME:
|
|
|
|
from_secret: CODEBERG_USERNAME
|
|
|
|
CODEBERG_PASSWORD:
|
|
|
|
from_secret: CODEBERG_PASSWORD
|
|
|
|
commands:
|
|
|
|
- git clone https://codeberg.org/Hyperpipe/Hyperpipe && cd ./Hyperpipe/
|
|
|
|
- echo $ARK_PASSWORD | docker login ark.sudovanilla.org --username $ARK_USERNAME --password-stdin
|
|
|
|
- echo $CODEBERG_PASSWORD | docker login codeberg.org --username $CODEBERG_USERNAME --password-stdin
|
2024-06-19 17:26:44 -05:00
|
|
|
|
2024-06-19 16:40:47 -05:00
|
|
|
- docker build -t ark.sudovanilla.org/korbs/hyperpipe:arm64 .
|
|
|
|
- docker build -t codeberg.org/korbs/hyperpipe:arm64 .
|
2024-06-19 17:26:44 -05:00
|
|
|
|
2024-06-19 16:40:47 -05:00
|
|
|
- docker push ark.sudovanilla.org/korbs/hyperpipe:arm64
|
|
|
|
- docker push codeberg.org/korbs/hyperpipe:arm64
|
|
|
|
|
2024-08-30 03:44:58 -05:00
|
|
|
---
|
|
|
|
###################
|
|
|
|
### Araa Search ###
|
|
|
|
###################
|
|
|
|
kind: pipeline # https://docs.drone.io/pipeline/overview/
|
|
|
|
type: exec # https://docs.drone.io/pipeline/exec/overview/
|
|
|
|
name: Build Images for ARM64
|
2024-06-19 17:26:44 -05:00
|
|
|
|
2024-08-30 03:44:58 -05:00
|
|
|
# Do not clone the Docker Build Automation, it is not needed.
|
|
|
|
# https://docs.drone.io/pipeline/exec/syntax/cloning/#custom-logic
|
|
|
|
clone:
|
|
|
|
disable: true
|
|
|
|
|
|
|
|
# Set Platform
|
|
|
|
# https://docs.drone.io/pipeline/exec/syntax/platform/
|
|
|
|
platform:
|
|
|
|
os: linux
|
|
|
|
arch: arm64
|
2024-06-19 16:40:47 -05:00
|
|
|
|
|
|
|
- name: "Araa Search"
|
|
|
|
failure: ignore
|
|
|
|
environment:
|
|
|
|
ARK_USERNAME:
|
|
|
|
from_secret: ARK_USERNAME
|
|
|
|
ARK_PASSWORD:
|
|
|
|
from_secret: ARK_PASSWORD
|
|
|
|
CODEBERG_USERNAME:
|
|
|
|
from_secret: CODEBERG_USERNAME
|
|
|
|
CODEBERG_PASSWORD:
|
|
|
|
from_secret: CODEBERG_PASSWORD
|
|
|
|
commands:
|
|
|
|
- git clone https://github.com/Extravi/araa-search && cd ./araa-search/
|
|
|
|
- echo $ARK_PASSWORD | docker login ark.sudovanilla.org --username $ARK_USERNAME --password-stdin
|
|
|
|
- echo $CODEBERG_PASSWORD | docker login codeberg.org --username $CODEBERG_USERNAME --password-stdin
|
|
|
|
- cp alpine-based.dockerfile Dockerfile # yeah no
|
2024-06-19 17:26:44 -05:00
|
|
|
|
2024-06-19 16:40:47 -05:00
|
|
|
- docker build -t ark.sudovanilla.org/korbs/araa-search:arm64 .
|
|
|
|
- docker build -t codeberg.org/korbs/araa-search:arm64 .
|
2024-06-19 17:26:44 -05:00
|
|
|
|
2024-06-19 16:40:47 -05:00
|
|
|
- docker push ark.sudovanilla.org/korbs/araa-search:arm64
|
|
|
|
- docker push codeberg.org/korbs/araa-search:arm64
|
|
|
|
|
|
|
|
---
|
2024-08-30 03:44:58 -05:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2024-06-19 16:40:47 -05:00
|
|
|
#############
|
2024-08-30 03:44:58 -05:00
|
|
|
### Poke ###
|
2024-06-19 16:40:47 -05:00
|
|
|
#############
|
|
|
|
kind: pipeline # https://docs.drone.io/pipeline/overview/
|
|
|
|
type: exec # https://docs.drone.io/pipeline/exec/overview/
|
|
|
|
name: Build Images for AMD64
|
|
|
|
|
|
|
|
# Do not clone the Docker Build Automation, it is not needed.
|
|
|
|
# https://docs.drone.io/pipeline/exec/syntax/cloning/#custom-logic
|
|
|
|
clone:
|
|
|
|
disable: true
|
|
|
|
|
|
|
|
# Set Platform
|
|
|
|
# https://docs.drone.io/pipeline/exec/syntax/platform/
|
|
|
|
platform:
|
|
|
|
os: linux
|
2024-06-19 17:43:41 -05:00
|
|
|
arch: amd64
|
2024-06-19 16:40:47 -05:00
|
|
|
|
|
|
|
steps:
|
2024-06-19 18:28:59 -05:00
|
|
|
- name: Poke
|
|
|
|
failure: ignore
|
|
|
|
environment:
|
|
|
|
ARK_USERNAME:
|
|
|
|
from_secret: ARK_USERNAME
|
|
|
|
ARK_PASSWORD:
|
|
|
|
from_secret: ARK_PASSWORD
|
|
|
|
CODEBERG_USERNAME:
|
|
|
|
from_secret: CODEBERG_USERNAME
|
|
|
|
CODEBERG_PASSWORD:
|
|
|
|
from_secret: CODEBERG_PASSWORD
|
|
|
|
commands:
|
|
|
|
- git clone https://codeberg.org/ashley/poke && cd ./poke/
|
|
|
|
- echo $ARK_PASSWORD | docker login ark.sudovanilla.org --username $ARK_USERNAME --password-stdin
|
|
|
|
- echo $CODEBERG_PASSWORD | docker login codeberg.org --username $CODEBERG_USERNAME --password-stdin
|
|
|
|
|
|
|
|
- docker build -t codeberg.org/korbs/poke:amd64 .
|
2024-06-23 21:45:16 -05:00
|
|
|
- docker build -t codeberg.org/poketube/poke:amd64 .
|
2024-06-19 18:28:59 -05:00
|
|
|
- docker build -t ark.sudovanilla.org/korbs/poke:amd64 .
|
|
|
|
|
2024-06-19 18:35:40 -05:00
|
|
|
- docker push ark.sudovanilla.org/korbs/poke:amd64
|
|
|
|
- docker rmi ark.sudovanilla.org/korbs/poke:amd64
|
2024-06-19 18:28:59 -05:00
|
|
|
- docker push codeberg.org/korbs/poke:amd64
|
|
|
|
- docker rmi codeberg.org/korbs/poke:amd64
|
2024-06-23 21:45:16 -05:00
|
|
|
- docker push codeberg.org/poketube/poke:amd64
|
|
|
|
- docker rmi codeberg.org/poketube/poke:amd64
|
2024-06-19 18:28:59 -05:00
|
|
|
|
2024-08-30 03:44:58 -05:00
|
|
|
---
|
|
|
|
###################
|
|
|
|
### Debian Slim ###
|
|
|
|
###################
|
|
|
|
kind: pipeline # https://docs.drone.io/pipeline/overview/
|
|
|
|
type: exec # https://docs.drone.io/pipeline/exec/overview/
|
|
|
|
name: Build Images for ARM64
|
|
|
|
|
|
|
|
# Do not clone the Docker Build Automation, it is not needed.
|
|
|
|
# https://docs.drone.io/pipeline/exec/syntax/cloning/#custom-logic
|
|
|
|
clone:
|
|
|
|
disable: true
|
|
|
|
|
|
|
|
# Set Platform
|
|
|
|
# https://docs.drone.io/pipeline/exec/syntax/platform/
|
|
|
|
platform:
|
|
|
|
os: linux
|
|
|
|
arch: arm64
|
|
|
|
|
2024-06-19 16:40:47 -05:00
|
|
|
- name: "Debian Slim"
|
|
|
|
failure: ignore
|
|
|
|
environment:
|
|
|
|
ARK_USERNAME:
|
|
|
|
from_secret: ARK_USERNAME
|
|
|
|
ARK_PASSWORD:
|
|
|
|
from_secret: ARK_PASSWORD
|
|
|
|
CODEBERG_USERNAME:
|
|
|
|
from_secret: CODEBERG_USERNAME
|
|
|
|
CODEBERG_PASSWORD:
|
|
|
|
from_secret: CODEBERG_PASSWORD
|
|
|
|
commands:
|
|
|
|
- git clone https://github.com/linuxcontainers/debian-slim && cd ./debian-slim/
|
|
|
|
- echo $ARK_PASSWORD | docker login ark.sudovanilla.org --username $ARK_USERNAME --password-stdin
|
|
|
|
- echo $CODEBERG_PASSWORD | docker login codeberg.org --username $CODEBERG_USERNAME --password-stdin
|
2024-06-19 17:26:44 -05:00
|
|
|
|
|
|
|
- docker build -t ark.sudovanilla.org/korbs/debian-slim:amd64 .
|
|
|
|
- docker build -t codeberg.org/korbs/debian-slim:amd64 .
|
|
|
|
|
|
|
|
- docker push ark.sudovanilla.org/korbs/debian-slim:amd64
|
|
|
|
- docker rmi ark.sudovanilla.org/korbs/debian-slim:amd64
|
|
|
|
- docker push codeberg.org/korbs/debian-slim:amd64
|
|
|
|
- docker rmi codeberg.org/korbs/debian-slim:amd64
|
2024-06-19 16:40:47 -05:00
|
|
|
|
2024-08-30 03:44:58 -05:00
|
|
|
---
|
|
|
|
###################
|
|
|
|
### Aptabase ###
|
|
|
|
###################
|
|
|
|
kind: pipeline # https://docs.drone.io/pipeline/overview/
|
|
|
|
type: exec # https://docs.drone.io/pipeline/exec/overview/
|
|
|
|
name: Build Images for ARM64
|
|
|
|
|
|
|
|
# Do not clone the Docker Build Automation, it is not needed.
|
|
|
|
# https://docs.drone.io/pipeline/exec/syntax/cloning/#custom-logic
|
|
|
|
clone:
|
|
|
|
disable: true
|
|
|
|
|
|
|
|
# Set Platform
|
|
|
|
# https://docs.drone.io/pipeline/exec/syntax/platform/
|
|
|
|
platform:
|
|
|
|
os: linux
|
|
|
|
arch: arm64
|
|
|
|
|
2024-06-19 16:40:47 -05:00
|
|
|
- name: "Aptabase"
|
|
|
|
failure: ignore
|
|
|
|
environment:
|
|
|
|
ARK_USERNAME:
|
|
|
|
from_secret: ARK_USERNAME
|
|
|
|
ARK_PASSWORD:
|
|
|
|
from_secret: ARK_PASSWORD
|
|
|
|
CODEBERG_USERNAME:
|
|
|
|
from_secret: CODEBERG_USERNAME
|
|
|
|
CODEBERG_PASSWORD:
|
|
|
|
from_secret: CODEBERG_PASSWORD
|
|
|
|
commands:
|
|
|
|
- git clone https://github.com/aptabase/aptabase && cd ./aptabase/
|
|
|
|
- echo $ARK_PASSWORD | docker login ark.sudovanilla.org --username $ARK_USERNAME --password-stdin
|
|
|
|
- echo $CODEBERG_PASSWORD | docker login codeberg.org --username $CODEBERG_USERNAME --password-stdin
|
2024-06-19 17:26:44 -05:00
|
|
|
|
|
|
|
- docker build -t ark.sudovanilla.org/korbs/aptabase:amd64 .
|
|
|
|
- docker build -t codeberg.org/korbs/aptabase:amd64 .
|
|
|
|
|
|
|
|
- docker push ark.sudovanilla.org/korbs/aptabase:amd64
|
|
|
|
- docker rmi ark.sudovanilla.org/korbs/aptabase:amd64
|
|
|
|
- docker push codeberg.org/korbs/aptabase:amd64
|
|
|
|
- docker rmi codeberg.org/korbs/aptabase:amd64
|
2024-06-19 16:40:47 -05:00
|
|
|
|
2024-08-30 03:44:58 -05:00
|
|
|
---
|
|
|
|
###################
|
|
|
|
### 4get ###
|
|
|
|
###################
|
|
|
|
kind: pipeline # https://docs.drone.io/pipeline/overview/
|
|
|
|
type: exec # https://docs.drone.io/pipeline/exec/overview/
|
|
|
|
name: Build Images for ARM64
|
|
|
|
|
|
|
|
# Do not clone the Docker Build Automation, it is not needed.
|
|
|
|
# https://docs.drone.io/pipeline/exec/syntax/cloning/#custom-logic
|
|
|
|
clone:
|
|
|
|
disable: true
|
|
|
|
|
|
|
|
# Set Platform
|
|
|
|
# https://docs.drone.io/pipeline/exec/syntax/platform/
|
|
|
|
platform:
|
|
|
|
os: linux
|
|
|
|
arch: arm64
|
|
|
|
|
2024-06-10 17:55:00 -05:00
|
|
|
- name: 4get
|
2024-06-19 16:40:47 -05:00
|
|
|
failure: ignore
|
2024-06-10 17:53:48 -05:00
|
|
|
environment:
|
|
|
|
ARK_USERNAME:
|
|
|
|
from_secret: ARK_USERNAME
|
|
|
|
ARK_PASSWORD:
|
|
|
|
from_secret: ARK_PASSWORD
|
|
|
|
CODEBERG_USERNAME:
|
|
|
|
from_secret: CODEBERG_USERNAME
|
|
|
|
CODEBERG_PASSWORD:
|
|
|
|
from_secret: CODEBERG_PASSWORD
|
2024-06-10 17:55:00 -05:00
|
|
|
commands:
|
|
|
|
- git clone https://ark.sudovanilla.org/korbs/4get/ && cd ./4get/
|
|
|
|
- echo $ARK_PASSWORD | docker login ark.sudovanilla.org --username $ARK_USERNAME --password-stdin
|
2024-06-10 17:58:33 -05:00
|
|
|
- echo $CODEBERG_PASSWORD | docker login codeberg.org --username $CODEBERG_USERNAME --password-stdin
|
2024-06-19 17:26:44 -05:00
|
|
|
|
|
|
|
- docker build -t ark.sudovanilla.org/korbs/4get:amd64 .
|
|
|
|
- docker build -t codeberg.org/korbs/4get:amd64 .
|
|
|
|
|
|
|
|
- docker push ark.sudovanilla.org/korbs/4get:amd64
|
|
|
|
- docker rmi ark.sudovanilla.org/korbs/4get:amd64
|
|
|
|
- docker push codeberg.org/korbs/4get:amd64
|
|
|
|
- docker rmi codeberg.org/korbs/4get:amd64
|
2024-06-10 02:04:42 -05:00
|
|
|
|
2024-08-30 03:44:58 -05:00
|
|
|
---
|
|
|
|
###################
|
|
|
|
### Cinny ###
|
|
|
|
###################
|
|
|
|
kind: pipeline # https://docs.drone.io/pipeline/overview/
|
|
|
|
type: exec # https://docs.drone.io/pipeline/exec/overview/
|
|
|
|
name: Build Images for ARM64
|
|
|
|
|
|
|
|
# Do not clone the Docker Build Automation, it is not needed.
|
|
|
|
# https://docs.drone.io/pipeline/exec/syntax/cloning/#custom-logic
|
|
|
|
clone:
|
|
|
|
disable: true
|
|
|
|
|
|
|
|
# Set Platform
|
|
|
|
# https://docs.drone.io/pipeline/exec/syntax/platform/
|
|
|
|
platform:
|
|
|
|
os: linux
|
|
|
|
arch: arm64
|
|
|
|
|
2024-06-10 17:55:00 -05:00
|
|
|
- name: Cinny
|
2024-06-19 16:40:47 -05:00
|
|
|
failure: ignore
|
2024-06-10 17:55:00 -05:00
|
|
|
environment:
|
|
|
|
ARK_USERNAME:
|
|
|
|
from_secret: ARK_USERNAME
|
|
|
|
ARK_PASSWORD:
|
|
|
|
from_secret: ARK_PASSWORD
|
|
|
|
CODEBERG_USERNAME:
|
|
|
|
from_secret: CODEBERG_USERNAME
|
|
|
|
CODEBERG_PASSWORD:
|
|
|
|
from_secret: CODEBERG_PASSWORD
|
|
|
|
commands:
|
|
|
|
- git clone https://github.com/cinnyapp/cinny && cd ./cinny/
|
|
|
|
- echo $ARK_PASSWORD | docker login ark.sudovanilla.org --username $ARK_USERNAME --password-stdin
|
2024-06-10 17:58:33 -05:00
|
|
|
- echo $CODEBERG_PASSWORD | docker login codeberg.org --username $CODEBERG_USERNAME --password-stdin
|
2024-06-19 17:26:44 -05:00
|
|
|
|
|
|
|
- docker build -t ark.sudovanilla.org/korbs/cinny:amd64 .
|
|
|
|
- docker build -t codeberg.org/korbs/cinny:amd64 .
|
|
|
|
|
|
|
|
- docker push ark.sudovanilla.org/korbs/cinny:amd64
|
|
|
|
- docker rmi ark.sudovanilla.org/korbs/cinny:amd64
|
|
|
|
- docker push codeberg.org/korbs/cinny:amd64
|
|
|
|
- docker rmi codeberg.org/korbs/cinny:amd64
|
2024-06-10 02:04:42 -05:00
|
|
|
|
2024-08-30 03:44:58 -05:00
|
|
|
---
|
|
|
|
###################
|
|
|
|
### Bun ###
|
|
|
|
###################
|
|
|
|
kind: pipeline # https://docs.drone.io/pipeline/overview/
|
|
|
|
type: exec # https://docs.drone.io/pipeline/exec/overview/
|
|
|
|
name: Build Images for ARM64
|
|
|
|
|
|
|
|
# Do not clone the Docker Build Automation, it is not needed.
|
|
|
|
# https://docs.drone.io/pipeline/exec/syntax/cloning/#custom-logic
|
|
|
|
clone:
|
|
|
|
disable: true
|
|
|
|
|
|
|
|
# Set Platform
|
|
|
|
# https://docs.drone.io/pipeline/exec/syntax/platform/
|
|
|
|
platform:
|
|
|
|
os: linux
|
|
|
|
arch: arm64
|
|
|
|
|
2024-06-10 17:55:00 -05:00
|
|
|
- name: Bun
|
2024-06-19 16:40:47 -05:00
|
|
|
failure: ignore
|
2024-06-10 17:55:00 -05:00
|
|
|
environment:
|
|
|
|
ARK_USERNAME:
|
|
|
|
from_secret: ARK_USERNAME
|
|
|
|
ARK_PASSWORD:
|
|
|
|
from_secret: ARK_PASSWORD
|
|
|
|
CODEBERG_USERNAME:
|
|
|
|
from_secret: CODEBERG_USERNAME
|
|
|
|
CODEBERG_PASSWORD:
|
|
|
|
from_secret: CODEBERG_PASSWORD
|
|
|
|
commands:
|
|
|
|
- git clone https://github.com/oven-sh/bun && cd ./bun/dockerhub/debian-slim/
|
|
|
|
- echo $ARK_PASSWORD | docker login ark.sudovanilla.org --username $ARK_USERNAME --password-stdin
|
2024-06-10 17:58:33 -05:00
|
|
|
- echo $CODEBERG_PASSWORD | docker login codeberg.org --username $CODEBERG_USERNAME --password-stdin
|
2024-06-19 17:26:44 -05:00
|
|
|
|
|
|
|
- docker build -t ark.sudovanilla.org/korbs/bun:amd64 .
|
|
|
|
- docker build -t codeberg.org/korbs/bun:amd64 .
|
|
|
|
|
|
|
|
- docker push ark.sudovanilla.org/korbs/bun:amd64
|
|
|
|
- docker rmi ark.sudovanilla.org/korbs/bun:amd64
|
|
|
|
- docker push codeberg.org/korbs/bun:amd64
|
|
|
|
- docker rmi codeberg.org/korbs/bun:amd64
|
2024-06-10 02:04:42 -05:00
|
|
|
|
2024-08-30 03:44:58 -05:00
|
|
|
---
|
|
|
|
###################
|
|
|
|
### Hyperpipe ###
|
|
|
|
###################
|
|
|
|
kind: pipeline # https://docs.drone.io/pipeline/overview/
|
|
|
|
type: exec # https://docs.drone.io/pipeline/exec/overview/
|
|
|
|
name: Build Images for ARM64
|
|
|
|
|
|
|
|
# Do not clone the Docker Build Automation, it is not needed.
|
|
|
|
# https://docs.drone.io/pipeline/exec/syntax/cloning/#custom-logic
|
|
|
|
clone:
|
|
|
|
disable: true
|
|
|
|
|
|
|
|
# Set Platform
|
|
|
|
# https://docs.drone.io/pipeline/exec/syntax/platform/
|
|
|
|
platform:
|
|
|
|
os: linux
|
|
|
|
arch: arm64
|
|
|
|
|
2024-06-10 17:55:00 -05:00
|
|
|
- name: Hyperpipe
|
2024-06-19 16:40:47 -05:00
|
|
|
failure: ignore
|
2024-06-10 17:55:00 -05:00
|
|
|
environment:
|
|
|
|
ARK_USERNAME:
|
|
|
|
from_secret: ARK_USERNAME
|
|
|
|
ARK_PASSWORD:
|
|
|
|
from_secret: ARK_PASSWORD
|
|
|
|
CODEBERG_USERNAME:
|
|
|
|
from_secret: CODEBERG_USERNAME
|
|
|
|
CODEBERG_PASSWORD:
|
|
|
|
from_secret: CODEBERG_PASSWORD
|
|
|
|
commands:
|
|
|
|
- git clone https://codeberg.org/Hyperpipe/Hyperpipe && cd ./Hyperpipe/
|
|
|
|
- echo $ARK_PASSWORD | docker login ark.sudovanilla.org --username $ARK_USERNAME --password-stdin
|
2024-06-10 17:58:33 -05:00
|
|
|
- echo $CODEBERG_PASSWORD | docker login codeberg.org --username $CODEBERG_USERNAME --password-stdin
|
2024-06-19 17:26:44 -05:00
|
|
|
|
|
|
|
- docker build -t ark.sudovanilla.org/korbs/hyperpipe:amd64 .
|
|
|
|
- docker build -t codeberg.org/korbs/hyperpipe:amd64 .
|
|
|
|
|
|
|
|
- docker push ark.sudovanilla.org/korbs/hyperpipe:amd64
|
|
|
|
- docker rmi ark.sudovanilla.org/korbs/hyperpipe:amd64
|
|
|
|
- docker push codeberg.org/korbs/hyperpipe:amd64
|
|
|
|
- docker rmi codeberg.org/korbs/hyperpipe:amd64
|
2024-06-10 02:04:42 -05:00
|
|
|
|
2024-08-30 03:44:58 -05:00
|
|
|
---
|
|
|
|
###################
|
|
|
|
### Araa Search ###
|
|
|
|
###################
|
|
|
|
kind: pipeline # https://docs.drone.io/pipeline/overview/
|
|
|
|
type: exec # https://docs.drone.io/pipeline/exec/overview/
|
|
|
|
name: Build Images for ARM64
|
|
|
|
|
|
|
|
# Do not clone the Docker Build Automation, it is not needed.
|
|
|
|
# https://docs.drone.io/pipeline/exec/syntax/cloning/#custom-logic
|
|
|
|
clone:
|
|
|
|
disable: true
|
2024-06-19 17:26:44 -05:00
|
|
|
|
2024-08-30 03:44:58 -05:00
|
|
|
# Set Platform
|
|
|
|
# https://docs.drone.io/pipeline/exec/syntax/platform/
|
|
|
|
platform:
|
|
|
|
os: linux
|
|
|
|
arch: arm64
|
2024-06-10 02:04:42 -05:00
|
|
|
|
2024-06-10 17:55:00 -05:00
|
|
|
- name: "Araa Search"
|
2024-06-19 16:40:47 -05:00
|
|
|
failure: ignore
|
2024-06-10 17:55:00 -05:00
|
|
|
environment:
|
|
|
|
ARK_USERNAME:
|
|
|
|
from_secret: ARK_USERNAME
|
|
|
|
ARK_PASSWORD:
|
|
|
|
from_secret: ARK_PASSWORD
|
|
|
|
CODEBERG_USERNAME:
|
|
|
|
from_secret: CODEBERG_USERNAME
|
|
|
|
CODEBERG_PASSWORD:
|
|
|
|
from_secret: CODEBERG_PASSWORD
|
|
|
|
commands:
|
|
|
|
- git clone https://github.com/Extravi/araa-search && cd ./araa-search/
|
|
|
|
- echo $ARK_PASSWORD | docker login ark.sudovanilla.org --username $ARK_USERNAME --password-stdin
|
2024-06-10 17:58:33 -05:00
|
|
|
- echo $CODEBERG_PASSWORD | docker login codeberg.org --username $CODEBERG_USERNAME --password-stdin
|
2024-06-10 17:55:00 -05:00
|
|
|
- cp alpine-based.dockerfile Dockerfile # yeah no
|
2024-06-19 17:26:44 -05:00
|
|
|
|
|
|
|
- docker build -t ark.sudovanilla.org/korbs/araa-search:amd64 .
|
|
|
|
- docker build -t codeberg.org/korbs/araa-search:amd64 .
|
|
|
|
|
|
|
|
- docker push ark.sudovanilla.org/korbs/araa-search:amd64
|
|
|
|
- docker rmi ark.sudovanilla.org/korbs/araa-search:amd64
|
|
|
|
- docker push codeberg.org/korbs/araa-search:amd64
|
2024-06-19 18:28:59 -05:00
|
|
|
- docker rmi codeberg.org/korbs/araa-search:amd64
|