go-cmw/.drone.yml
Elia el Lazkani 00d1ef76f3
Some checks failed
continuous-integration/drone/push Build is failing
chore(): Tests building package in parallel
2023-07-02 21:27:25 +02:00

97 lines
1.6 KiB
YAML

---
kind: pipeline
name: test
steps:
- name: test-code
image: golang
environment:
commands:
- go get
- go test
---
kind: pipeline
name: build
steps:
- name: prepare
image: golang
commands:
- mkdir bin/
- name: build-linux-amd64
image: golang
environment:
GOOS: linux
GOARCH: amd64
commands:
- go get
- go build -o bin/cmw-linux-amd64
depends_on:
- prepare
- name: build-darwin-amd64
image: golang
environment:
GOOS: darwin
GOARCH: amd64
commands:
- go get
- go build -o bin/cmw-darwin-amd64
depends_on:
- prepare
- name: build-windows-amd64
image: golang
environment:
GOOS: windows
GOARCH: amd64
commands:
- go get
- go build -o bin/cmw-windows-amd64
depends_on:
- prepare
- name: build-linux-arm64
image: golang
environment:
GOOS: linux
GOARCH: arm64
commands:
- go get
- go build -o bin/cmw-linux-arm64
depends_on:
- prepare
- name: build-darwin-arm64
image: golang
environment:
GOOS: darwin
GOARCH: arm64
commands:
- go get
- go build -o bin/cmw-darwin-arm64
depends_on:
- prepare
- name: gitea_release
image: plugins/gitea-release
settings:
title: Draft ${DRONE_COMMIT_SHA:0:8}
draft: true
note: Draft release of ${DRONE_COMMIT_SHA:0:8}
api_key:
from_secret:
registry_password
base_url: https://scm.project42.io
files: bin/*
depends_on:
- build-linux-amd64
- build-darwin-amd64
- build-windows-amd64
- build-linux-arm64
- build-darwin-arm64
depends_on:
- test