goenv/.drone.yml
xiaoqidun cf514fbbb7
All checks were successful
continuous-integration/drone/push Build is passing
feat(升级镜像): 更新Go和NDK
2024-03-13 16:05:37 +08:00

39 lines
1.1 KiB
YAML

---
kind: pipeline
type: docker
name: default
node:
region: cn
steps:
- name: build
pull: if-not-exists
image: debian
commands:
- sed -i "s|deb.debian.org|mirrors.ustc.edu.cn|g" /etc/apt/sources.list.d/debian.sources
- apt-get update && apt-get install -y wget unzip && rm -rf /var/lib/apt/lists/*
- wget -q -T 180 -4 https://dl.google.com/android/repository/android-ndk-r26c-linux.zip
- unzip -q android-ndk-r26c-linux.zip
- rm -f android-ndk-r26c-linux.zip
- name: docker-cn
pull: if-not-exists
image: plugins/docker
settings:
repo: ccr.ccs.tencentyun.com/xiaoqidun/goenv
registry: ccr.ccs.tencentyun.com
username:
from_secret: docker_username
password:
from_secret: docker_password
dockerfile: DockerfileCN
- name: docker-hk
pull: if-not-exists
image: plugins/docker
settings:
repo: hkccr.ccs.tencentyun.com/xiaoqidun/goenv
registry: hkccr.ccs.tencentyun.com
username:
from_secret: docker_username
password:
from_secret: docker_password
dockerfile: DockerfileHK