goenv/.drone.yml

54 lines
1.2 KiB
YAML
Raw Normal View History

---
kind: pipeline
type: docker
name: goenv
steps:
2020-09-24 01:13:02 +08:00
- name: build1
pull: if-not-exists
image: ghcr.io/xiaoqidun/build
commands:
- build -f build.sh -i goenv.go -o release/goenv
2020-09-24 01:13:02 +08:00
- name: build2
pull: if-not-exists
image: xiaoqidun/goenv
commands:
- ./build.sh
- name: upload
pull: if-not-exists
image: plugins/s3
settings:
bucket:
from_secret: minio_bucket
access_key:
from_secret: minio_access_key
secret_key:
from_secret: minio_secret_key
source: release/*
strip_prefix: release/
target: product/goenv
path_style: true
endpoint: https://minio.aite.xyz
---
kind: pipeline
type: docker
name: docker
steps:
2020-09-22 15:55:02 +08:00
- name: build
pull: if-not-exists
2020-09-22 15:56:26 +08:00
image: alpine
2020-09-22 15:55:02 +08:00
commands:
- wget -q -T 180 https://dl.google.com/android/repository/android-ndk-r21b-linux-x86_64.zip
- unzip -q android-ndk-r21b-linux-x86_64.zip
- name: docker
pull: if-not-exists
image: plugins/docker
settings:
repo: xiaoqidun/goenv
username:
from_secret: docker_username
password:
from_secret: docker_password
dockerfile: Dockerfile