54 lines
1.1 KiB
YAML
54 lines
1.1 KiB
YAML
# .drone.yml
|
|
kind: pipeline
|
|
name: default
|
|
|
|
workspace:
|
|
base: /go
|
|
path: src/github.com/octocat/hello-world
|
|
|
|
steps:
|
|
- name: test
|
|
image: golang
|
|
commands:
|
|
- export GOPROXY=https://mirrors.aliyun.com/goproxy/
|
|
- go test
|
|
|
|
- name: clone_web
|
|
image: alpine/git
|
|
commands:
|
|
- mkdir /go/web
|
|
- ls /go/web
|
|
- git clone https://git.shagain.club/lingling/go_echo_wol_web.git /go/web
|
|
- git checkout master
|
|
|
|
- name: build_web
|
|
image: node
|
|
commands:
|
|
- cd /go/web/
|
|
- npm install yarn
|
|
- yarn config set registry https://registry.npm.taobao.org --global
|
|
- yarn
|
|
- yarn run eject
|
|
- yarn build
|
|
|
|
- name: build
|
|
image: golang
|
|
volumes:
|
|
- name: outdir
|
|
path: /root/web
|
|
commands:
|
|
- rm -rf ./app/*
|
|
- cp -r /go/web/build/* ./app/
|
|
- sed -i 's?/static?/static/static?g' ./app/index.html
|
|
- sed -i 's?/favicon.ico?/static/favicon.ico?g' ./app/index.html
|
|
- sed -i 's?/logo192.png?/static/logo192.png?g' ./app/index.html
|
|
- sed -i 's?/manifest.json?/static/manifest.json?g' ./app/index.html
|
|
- env GOOS=windows
|
|
- env GOARCH=amd64
|
|
- env CGO_ENABLED=0
|
|
- go build -o /root/web/main.exe
|
|
volumes:
|
|
- name: outdir
|
|
host:
|
|
path: /root/web
|