updated .drone.yml
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
Paul 2022-03-26 12:11:52 +01:00
parent 18c86edd42
commit aee653dbde

View File

@ -1,64 +1,47 @@
--- ---
kind: pipeline kind: pipeline
type: docker type: docker
name: cleanup-before name: build-linux-amd64
steps: environment:
- name: clean GOOS: linux
image: alpine GOARCH: amd64
commands: GOOPTIONS: -mod=vendor
- rm -rf /build/* SRCFILES: cmd/qrz/*.go
volumes: PROJECTNAME: qrz
- name: build
path: /build
when:
event: tag
volumes:
- name: build
host:
path: /tmp/qrz/build
---
kind: pipeline
type: docker
name: default-linux-amd64
steps: steps:
- name: build - name: build
image: golang image: golang
commands: commands:
- ./ci-build.sh build - go build -o $PROJECTNAME $GOOPTIONS $SRCFILES
environment: when:
GOOS: linux event:
GOARCH: amd64 exclude:
volumes: - tag
- name: build
path: /build
volumes:
- name: build
host:
path: /tmp/qrz/build
depends_on:
- cleanup-before
--- ---
kind: pipeline kind: pipeline
type: docker type: docker
name: gitea-release name: gitea-release-linux-amd64
environment:
GOOS: linux
GOARCH: amd64
GOOPTIONS: -mod=vendor
SRCFILES: cmd/qrz/*.go
PROJECTNAME: qrz
steps: steps:
- name: move
image: alpine
commands:
- mv build/* ./
volumes:
- name: build - name: build
path: /drone/src/build image: golang
commands:
- go build -o $PROJECTNAME $GOOPTIONS $SRCFILES
- tar -czvf $PROJECTNAME-$DRONE_TAG-$GOOS-$GOARCH.tar.gz $PROJECTNAME
- echo $PROJECTNAME $DRONE_TAG > VERSION
when: when:
event: tag event:
- tag
- name: release - name: release
image: plugins/gitea-release image: plugins/gitea-release
settings: settings:
@ -70,49 +53,6 @@ steps:
- sha256 - sha256
- sha512 - sha512
title: VERSION title: VERSION
volumes:
- name: build
path: /drone/src/build
when: when:
event: tag event:
- name: ls - tag
image: alpine
commands:
- find .
volumes:
- name: build
path: /drone/src/build
when:
event: tag
volumes:
- name: build
host:
path: /tmp/qrz/build
depends_on:
- default-linux-amd64
---
kind: pipeline
type: docker
name: cleanup-after
steps:
- name: clean
image: alpine
commands:
- rm -rf /build/*
volumes:
- name: build
path: /build
when:
event: tag
volumes:
- name: build
host:
path: /tmp/qrz/build
depends_on:
- gitea-release