1
Fork 0

Don't wait for each image to build and move on to next one, build all now!
Some checks reported errors
continuous-integration/drone Build encountered an error

This commit is contained in:
Korbs 2024-08-30 04:44:58 -04:00
parent 6f4469acdd
commit c593717c0b
2 changed files with 277 additions and 48 deletions

View file

@ -1,6 +1,6 @@
---
#############
### ARM64 ###
### Poke ###
#############
kind: pipeline # https://docs.drone.io/pipeline/overview/
type: exec # https://docs.drone.io/pipeline/exec/overview/
@ -42,6 +42,25 @@ steps:
- docker push codeberg.org/poketube/poke:arm64
- docker push ark.sudovanilla.org/korbs/poke:arm64
---
###################
### 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
- name: "Debian Slim"
failure: ignore
environment:
@ -64,6 +83,25 @@ steps:
- docker push ark.sudovanilla.org/korbs/debian-slim:arm64
- docker push codeberg.org/korbs/debian-slim:arm64
---
###################
### 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
- name: "Aptabase"
failure: ignore
environment:
@ -86,6 +124,25 @@ steps:
- docker push ark.sudovanilla.org/korbs/aptabase:arm64
- docker push codeberg.org/korbs/aptabase:arm64
---
###################
### 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
- name: 4get
failure: ignore
environment:
@ -108,6 +165,25 @@ steps:
- docker push ark.sudovanilla.org/korbs/4get:arm64
- docker push codeberg.org/korbs/4get:arm64
---
###################
### 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
- name: Cinny
failure: ignore
environment:
@ -130,6 +206,25 @@ steps:
- docker push ark.sudovanilla.org/korbs/cinny:arm64
- docker push codeberg.org/korbs/cinny:arm64
---
###################
### 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
- name: Bun
failure: ignore
environment:
@ -152,6 +247,25 @@ steps:
- docker push ark.sudovanilla.org/korbs/bun:arm64
- docker push codeberg.org/korbs/bun:arm64
---
###################
### 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
- name: Hyperpipe
failure: ignore
environment:
@ -174,27 +288,24 @@ steps:
- docker push ark.sudovanilla.org/korbs/hyperpipe:arm64
- docker push codeberg.org/korbs/hyperpipe:arm64
- name: Bin
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/w4/bin && cd ./bin/
- 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 ark.sudovanilla.org/korbs/bin:arm64 .
- docker build -t codeberg.org/korbs/bin:arm64 .
---
###################
### Araa Search ###
###################
kind: pipeline # https://docs.drone.io/pipeline/overview/
type: exec # https://docs.drone.io/pipeline/exec/overview/
name: Build Images for ARM64
- docker push ark.sudovanilla.org/korbs/bin:arm64
- docker push codeberg.org/korbs/bin: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
- name: "Araa Search"
failure: ignore
@ -220,8 +331,20 @@ steps:
- docker push codeberg.org/korbs/araa-search:arm64
---
#############
### AMD64 ###
### Poke ###
#############
kind: pipeline # https://docs.drone.io/pipeline/overview/
type: exec # https://docs.drone.io/pipeline/exec/overview/
@ -266,6 +389,25 @@ steps:
- docker push codeberg.org/poketube/poke:amd64
- docker rmi codeberg.org/poketube/poke:amd64
---
###################
### 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
- name: "Debian Slim"
failure: ignore
environment:
@ -290,6 +432,25 @@ steps:
- docker push codeberg.org/korbs/debian-slim:amd64
- docker rmi codeberg.org/korbs/debian-slim:amd64
---
###################
### 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
- name: "Aptabase"
failure: ignore
environment:
@ -314,6 +475,25 @@ steps:
- docker push codeberg.org/korbs/aptabase:amd64
- docker rmi codeberg.org/korbs/aptabase:amd64
---
###################
### 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
- name: 4get
failure: ignore
environment:
@ -338,6 +518,25 @@ steps:
- docker push codeberg.org/korbs/4get:amd64
- docker rmi codeberg.org/korbs/4get:amd64
---
###################
### 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
- name: Cinny
failure: ignore
environment:
@ -362,6 +561,25 @@ steps:
- docker push codeberg.org/korbs/cinny:amd64
- docker rmi codeberg.org/korbs/cinny:amd64
---
###################
### 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
- name: Bun
failure: ignore
environment:
@ -386,6 +604,25 @@ steps:
- docker push codeberg.org/korbs/bun:amd64
- docker rmi codeberg.org/korbs/bun:amd64
---
###################
### 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
- name: Hyperpipe
failure: ignore
environment:
@ -410,29 +647,24 @@ steps:
- docker push codeberg.org/korbs/hyperpipe:amd64
- docker rmi codeberg.org/korbs/hyperpipe:amd64
- name: Bin
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/w4/bin && cd ./bin/
- 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 ark.sudovanilla.org/korbs/bin:amd64 .
- docker build -t codeberg.org/korbs/bin:amd64 .
---
###################
### Araa Search ###
###################
kind: pipeline # https://docs.drone.io/pipeline/overview/
type: exec # https://docs.drone.io/pipeline/exec/overview/
name: Build Images for ARM64
- docker push ark.sudovanilla.org/korbs/bin:amd64
- docker rmi ark.sudovanilla.org/korbs/bin:amd64
- docker push codeberg.org/korbs/bin:amd64
- docker rmi codeberg.org/korbs/bin: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
arch: arm64
- name: "Araa Search"
failure: ignore

View file

@ -13,10 +13,7 @@ Another reason for this, is that some projects either don't provide an image or
| Aptabase | `ARM64`<br/>`AMD64` | `ark.sudovanilla.org/korbs/aptabse:arm64`<br/>`codeberg.org/korbs/aptabse:arm64`</br>`ark.sudovanilla.org/korbs/aptabse:amd64`<br/>`codeberg.org/korbs/aptabse:amd64` |
| Araa Search | `ARM64`<br/>`AMD64` | `ark.sudovanilla.org/korbs/araa-search:arm64`<br/>`codeberg.org/korbs/araa-search:arm64`</br>`ark.sudovanilla.org/korbs/araa-search:amd64`<br/>`codeberg.org/korbs/araa-search:amd64` |
| Debian Slim | `ARM64`<br/>`AMD64` | `ark.sudovanilla.org/korbs/debian-slim:arm64`<br/>`codeberg.org/korbs/debian-slim:arm64`</br>`ark.sudovanilla.org/korbs/debian-slim:amd64`<br/>`codeberg.org/korbs/debian-slim:amd64` |
| Bew | `ARM64`<br/>`AMD64` | `ark.sudovanilla.org/korbs/bew:arm64`<br/>`codeberg.org/korbs/bew:arm64`</br>`ark.sudovanilla.org/korbs/bew:amd64`<br/>`codeberg.org/korbs/bew:amd64` |
| Bin | `ARM64`<br/>`AMD64` | `ark.sudovanilla.org/korbs/bin:arm64`<br/>`codeberg.org/korbs/bin:arm64`</br>`ark.sudovanilla.org/korbs/bin:amd64`<br/>`codeberg.org/korbs/bin:amd64` |
| Bun | `ARM64`<br/>`AMD64` | `ark.sudovanilla.org/korbs/bun:arm64`<br/>`codeberg.org/korbs/bun:arm64`</br>`ark.sudovanilla.org/korbs/bun:amd64`<br/>`codeberg.org/korbs/bun:amd64` |
| Cinny | `ARM64`<br/>`AMD64` | `ark.sudovanilla.org/korbs/cinny:arm64`<br/>`codeberg.org/korbs/cinny:arm64`</br>`ark.sudovanilla.org/korbs/cinny:amd64`<br/>`codeberg.org/korbs/cinny:amd64` |
| Hyperpipe | `ARM64`<br/>`AMD64` | `ark.sudovanilla.org/korbs/hyperpipe:arm64`<br/>`codeberg.org/korbs/hyperpipe:arm64`</br>`ark.sudovanilla.org/korbs/hyperpipe:amd64`<br/>`codeberg.org/korbs/hyperpipe:amd64` |
| Poke | `ARM64`<br/>`AMD64` | `ark.sudovanilla.org/korbs/poke:arm64`<br/>`codeberg.org/korbs/poke:arm64`</br>`ark.sudovanilla.org/korbs/poke:amd64`<br/>`codeberg.org/korbs/poke:amd64` (Official) |
| Whoogle Search | `ARM64`<br/>`AMD64` | `ark.sudovanilla.org/korbs/whoogle:arm64`<br/>`codeberg.org/korbs/whoogle:arm64`</br>`ark.sudovanilla.org/korbs/whoogle:amd64`<br/>`codeberg.org/korbs/whoogle:amd64` |
| Poke | `ARM64`<br/>`AMD64` | `ark.sudovanilla.org/korbs/poke:arm64`<br/>`codeberg.org/korbs/poke:arm64`</br>`ark.sudovanilla.org/korbs/poke:amd64`<br/>`codeberg.org/korbs/poke:amd64` (Official) |