This repository has been archived on 2023-12-12. You can view files and clone it, but cannot push or open issues or pull requests.
alidns/.drone.yml
2021-04-30 22:22:24 +08:00

40 lines
848 B
YAML

workspace:
base: /srv/drone-demo
path: .
pipeline:
name: build_linux_amd64
build:
image: golang
environment:
GOOS: linux
GOARCH: amd64
# pull: true
commands:
- pwd
- ls
- go env -w GOPROXY=https://goproxy.io,direct
- go get -u github.com/aliyun/alibaba-cloud-sdk-go/services/alidns
- go mod init alidns
- go mod tidy
- go build alidns.go
- ls -al
pipeline:
name: build_windows_amd-64
build:
image: golang
environment:
GOOS: windows
GOARCH: amd64
# pull: true
commands:
- pwd
- ls
- go env -w GOPROXY=https://goproxy.io,direct
- go get -u github.com/aliyun/alibaba-cloud-sdk-go/services/alidns
- go mod init alidns
- go mod tidy
- go build alidns.go
- ls -al