mirror of
https://github.com/simon987/sist2.git
synced 2025-04-03 07:22:59 +00:00
109 lines
2.3 KiB
YAML
109 lines
2.3 KiB
YAML
kind: pipeline
|
|
type: docker
|
|
name: amd64
|
|
|
|
platform:
|
|
os: linux
|
|
arch: amd64
|
|
|
|
steps:
|
|
- name: submodules
|
|
image: alpine/git
|
|
commands:
|
|
- git submodule update --init --recursive
|
|
- name: docker
|
|
image: plugins/docker
|
|
depends_on:
|
|
- submodules
|
|
settings:
|
|
username:
|
|
from_secret: DOCKER_USER
|
|
password:
|
|
from_secret: DOCKER_PASSWORD
|
|
repo: sist2app/sist2
|
|
context: ./
|
|
dockerfile: ./Dockerfile
|
|
auto_tag: true
|
|
auto_tag_suffix: x64-linux
|
|
when:
|
|
event:
|
|
- tag
|
|
- name: build
|
|
image: sist2app/sist2-build
|
|
depends_on:
|
|
- submodules
|
|
commands:
|
|
- ./scripts/build.sh
|
|
- name: scp files
|
|
depends_on:
|
|
- build
|
|
image: appleboy/drone-scp
|
|
settings:
|
|
host:
|
|
from_secret: SSH_HOST
|
|
port:
|
|
from_secret: SSH_PORT
|
|
user:
|
|
from_secret: SSH_USER
|
|
key:
|
|
from_secret: SSH_KEY
|
|
target: ~/files/sist2/${DRONE_REPO_OWNER}_${DRONE_REPO_NAME}/${DRONE_BRANCH}_${DRONE_BUILD_NUMBER}_${DRONE_COMMIT}/
|
|
source:
|
|
- ./VERSION
|
|
- ./sist2-x64-linux
|
|
- ./sist2-x64-linux-debug
|
|
|
|
---
|
|
kind: pipeline
|
|
type: docker
|
|
name: arm64
|
|
|
|
platform:
|
|
arch: arm64
|
|
|
|
steps:
|
|
- name: submodules
|
|
image: alpine/git
|
|
commands:
|
|
- git submodule update --init --recursive
|
|
- name: docker
|
|
image: plugins/docker
|
|
depends_on:
|
|
- submodules
|
|
settings:
|
|
username:
|
|
from_secret: DOCKER_USER
|
|
password:
|
|
from_secret: DOCKER_PASSWORD
|
|
repo: sist2app/sist2
|
|
context: ./
|
|
dockerfile: ./Dockerfile.arm64
|
|
auto_tag: true
|
|
auto_tag_suffix: arm64-linux
|
|
when:
|
|
event:
|
|
- tag
|
|
- name: build
|
|
image: sist2app/sist2-build-arm64
|
|
depends_on:
|
|
- submodules
|
|
commands:
|
|
- ./scripts/build_arm64.sh
|
|
- name: scp files
|
|
depends_on:
|
|
- build
|
|
image: appleboy/drone-scp
|
|
settings:
|
|
host:
|
|
from_secret: SSH_HOST
|
|
port:
|
|
from_secret: SSH_PORT
|
|
user:
|
|
from_secret: SSH_USER
|
|
key:
|
|
from_secret: SSH_KEY
|
|
target: ~/files/sist2/${DRONE_REPO_OWNER}_${DRONE_REPO_NAME}/arm_${DRONE_BRANCH}_${DRONE_BUILD_NUMBER}_${DRONE_COMMIT}/
|
|
source:
|
|
- ./sist2-arm64-linux
|
|
- ./sist2-arm64-linux-debug
|