2020-09-22 15:38:27 +08:00
|
|
|
kind: pipeline
|
|
|
|
type: docker
|
|
|
|
name: default
|
|
|
|
|
|
|
|
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
|
2020-09-22 15:38:27 +08:00
|
|
|
- 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
|