diff options
author | techknowlogick <techknowlogick@gitea.io> | 2020-08-24 17:46:41 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-08-24 17:46:41 -0400 |
commit | 125ffb87f0d14b75f89acf2a47dc13c0f6577774 (patch) | |
tree | 83dbe3a24b977542259ecfeea87d9f7341664293 /.drone.yml | |
parent | 4b97f9018b51c1ef56c16154931123aac6080445 (diff) | |
download | gitea-125ffb87f0d14b75f89acf2a47dc13c0f6577774.tar.gz gitea-125ffb87f0d14b75f89acf2a47dc13c0f6577774.zip |
go1.15 on windows (#12589)
* go1.15 on windows
* update xgo to use node14
Diffstat (limited to '.drone.yml')
-rw-r--r-- | .drone.yml | 19 |
1 files changed, 4 insertions, 15 deletions
diff --git a/.drone.yml b/.drone.yml index 0bb731d18d..9824214bcd 100644 --- a/.drone.yml +++ b/.drone.yml @@ -447,23 +447,13 @@ steps: commands: - git fetch --tags --force - - name: static-windows - pull: always - image: techknowlogick/xgo:go-1.14.x - commands: - - apt update && apt -y install curl - - curl -sL https://deb.nodesource.com/setup_12.x | bash - && apt -y install nodejs - - export PATH=$PATH:$GOPATH/bin - - make frontend generate release-windows - environment: - GOPROXY: https://goproxy.cn # proxy.golang.org is blocked in China, this proxy is not - TAGS: bindata sqlite sqlite_unlock_notify - - name: static pull: always image: techknowlogick/xgo:go-1.15.x commands: - - make release-linux release-darwin release-copy release-compress release-sources release-docs release-check + - curl -sL https://deb.nodesource.com/setup_14.x | bash - && apt -y install nodejs + - export PATH=$PATH:$GOPATH/bin + - make release environment: GOPROXY: https://goproxy.cn # proxy.golang.org is blocked in China, this proxy is not TAGS: bindata sqlite sqlite_unlock_notify @@ -558,8 +548,7 @@ steps: pull: always image: techknowlogick/xgo:go-1.15.x commands: - - apt update && apt -y install curl - - curl -sL https://deb.nodesource.com/setup_12.x | bash - && apt -y install nodejs + - curl -sL https://deb.nodesource.com/setup_14.x | bash - && apt -y install nodejs - export PATH=$PATH:$GOPATH/bin - make release environment: |