Split it all up into their own steps
All checks were successful
continuous-integration/drone Build is passing
All checks were successful
continuous-integration/drone Build is passing
This commit is contained in:
parent
0466439d9f
commit
b1e085c338
1 changed files with 23 additions and 31 deletions
52
.drone.yml
52
.drone.yml
|
@ -7,55 +7,47 @@ platform:
|
||||||
arch: arm64
|
arch: arm64
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
- name: Build
|
- name: 4get
|
||||||
environment:
|
environment:
|
||||||
ARK_USERNAME:
|
ARK_USERNAME:
|
||||||
from_secret: ARK_USERNAME
|
from_secret: ARK_USERNAME
|
||||||
ARK_PASSWORD:
|
ARK_PASSWORD:
|
||||||
from_secret: ARK_PASSWORD
|
from_secret: ARK_PASSWORD
|
||||||
commands:
|
commands:
|
||||||
############################
|
|
||||||
## 4get ##
|
|
||||||
############################
|
|
||||||
- git clone https://ark.sudovanilla.org/korbs/4get/ && cd ./4get/
|
- git clone https://ark.sudovanilla.org/korbs/4get/ && cd ./4get/
|
||||||
- echo $ARK_PASSWORD | docker login ark.sudovanilla.org --username $ARK_USERNAME --password-stdin
|
- echo $ARK_PASSWORD | docker login ark.sudovanilla.org --username $ARK_USERNAME --password-stdin
|
||||||
- docker build -t ark.sudovanilla.org/korbs/4get:arm64 .
|
- docker build -t ark.sudovanilla.org/korbs/4get:arm64 .
|
||||||
- docker push ark.sudovanilla.org/korbs/4get:arm64
|
- docker push ark.sudovanilla.org/korbs/4get:arm64
|
||||||
- cd ../
|
- name: Cinny
|
||||||
|
environment:
|
||||||
############################
|
ARK_USERNAME:
|
||||||
## Cinny ##
|
from_secret: ARK_USERNAME
|
||||||
############################
|
ARK_PASSWORD:
|
||||||
|
from_secret: ARK_PASSWORD
|
||||||
|
commands:
|
||||||
- git clone https://github.com/cinnyapp/cinny && cd ./cinny/
|
- git clone https://github.com/cinnyapp/cinny && cd ./cinny/
|
||||||
- echo $ARK_PASSWORD | docker login ark.sudovanilla.org --username $ARK_USERNAME --password-stdin
|
- echo $ARK_PASSWORD | docker login ark.sudovanilla.org --username $ARK_USERNAME --password-stdin
|
||||||
- docker build -t ark.sudovanilla.org/korbs/cinny:arm64 .
|
- docker build -t ark.sudovanilla.org/korbs/cinny:arm64 .
|
||||||
- docker push ark.sudovanilla.org/korbs/cinny:arm64
|
- docker push ark.sudovanilla.org/korbs/cinny:arm64
|
||||||
- cd ../
|
- name: Bun
|
||||||
|
environment:
|
||||||
############################
|
ARK_USERNAME:
|
||||||
## Phanpy ##
|
from_secret: ARK_USERNAME
|
||||||
############################
|
ARK_PASSWORD:
|
||||||
# - git clone https://github.com/cheeaun/phanpy && cd ./phanpy/
|
from_secret: ARK_PASSWORD
|
||||||
# - echo $ARK_PASSWORD | docker login ark.sudovanilla.org --username $ARK_USERNAME --password-stdin
|
commands:
|
||||||
# - wget https://ark.sudovanilla.org/Korbs/4get-build-automation/raw/branch/main/phanpy/Dockerfile
|
|
||||||
# - docker build -t ark.sudovanilla.org/korbs/phanpy:arm64 .
|
|
||||||
# - docker push ark.sudovanilla.org/korbs/phanpy:arm64
|
|
||||||
# - cd ../
|
|
||||||
|
|
||||||
############################
|
|
||||||
## Bun ##
|
|
||||||
############################
|
|
||||||
- git clone https://github.com/oven-sh/bun && cd ./bun/dockerhub/debian-slim/
|
- 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 $ARK_PASSWORD | docker login ark.sudovanilla.org --username $ARK_USERNAME --password-stdin
|
||||||
- docker build -t ark.sudovanilla.org/korbs/bun:arm64 .
|
- docker build -t ark.sudovanilla.org/korbs/bun:arm64 .
|
||||||
- docker push ark.sudovanilla.org/korbs/bun:arm64
|
- docker push ark.sudovanilla.org/korbs/bun:arm64
|
||||||
- cd ../
|
- name: Hyperpipe
|
||||||
|
environment:
|
||||||
############################
|
ARK_USERNAME:
|
||||||
## Hyperpipe ##
|
from_secret: ARK_USERNAME
|
||||||
############################
|
ARK_PASSWORD:
|
||||||
|
from_secret: ARK_PASSWORD
|
||||||
|
commands:
|
||||||
- git clone https://codeberg.org/Hyperpipe/Hyperpipe && cd ./Hyperpipe/
|
- git clone https://codeberg.org/Hyperpipe/Hyperpipe && cd ./Hyperpipe/
|
||||||
- echo $ARK_PASSWORD | docker login ark.sudovanilla.org --username $ARK_USERNAME --password-stdin
|
- echo $ARK_PASSWORD | docker login ark.sudovanilla.org --username $ARK_USERNAME --password-stdin
|
||||||
- docker build -t ark.sudovanilla.org/korbs/hyperpipe:arm64 .
|
- docker build -t ark.sudovanilla.org/korbs/hyperpipe:arm64 .
|
||||||
- docker push ark.sudovanilla.org/korbs/hyperpipe:arm64
|
- docker push ark.sudovanilla.org/korbs/hyperpipe:arm64
|
||||||
- cd ../
|
|
Loading…
Reference in a new issue