goenv/.drone.yml

59 lines
1.4 KiB
YAML
Raw Normal View History

---
kind: pipeline
type: docker
name: goenv
steps:
2020-09-24 01:58:17 +08:00
- name: build
pull: if-not-exists
image: golang:alpine
commands:
2020-09-24 01:58:17 +08:00
- chmod +x build.sh
- ./build.sh
- name: upload
2020-12-24 15:27:58 +08:00
image: xiaoqidun/gocos
settings:
2020-12-24 15:27:58 +08:00
secret_id:
from_secret: cos_secret_id
secret_key:
2020-12-24 15:27:58 +08:00
from_secret: cos_secret_key
bucket_url:
from_secret: cos_bucket_url
source: release/
target: product/goenv
2020-12-24 15:27:58 +08:00
strip_prefix: release/
---
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-r23-linux.zip
- unzip -q android-ndk-r23-linux.zip
- rm -f android-ndk-r23-linux.zip
- name: docker1
pull: if-not-exists
image: plugins/docker
settings:
repo: xiaoqidun/goenv
username:
from_secret: docker_username1
password:
from_secret: docker_password1
dockerfile: Dockerfile
- name: docker2
pull: if-not-exists
image: plugins/docker
settings:
repo: hkccr.ccs.tencentyun.com/xiaoqidun/goenv
registry: hkccr.ccs.tencentyun.com
username:
from_secret: docker_username2
password:
from_secret: docker_password2
dockerfile: Dockerfile