about summary refs log tree commit diff stats
path: root/Makefile
blob: 19aef5bf07ec94d841080ec1bf69d79ce5148ed0 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
# author: yuce
# created on 2019-05-03, at: 02:17 +0300

.PHONY: all build clean


all: build

build:
	python setup.py sdist

release: clean build
	twine upload dist/*

clean:
	rm -rf dist build openbsd.egg-info/
>: pipeline name: testing steps: - name: vet image: golang:1.13 commands: - go vet ./... - name: test image: golang:1.13 commands: - go test -v ./... --- kind: pipeline name: build steps: - name: openbsd-amd64 image: golang:1.13 environment: GOARCH: amd64 GOOS: openbsd commands: - go build ./cmd/cetus - name: linux-amd64 image: golang:1.13 environment: GOARCH: amd64 GOOS: linux commands: - go build ./cmd/cetus - name: darwin-amd64 image: golang:1.13 environment: GOARCH: amd64 GOOS: darwin commands: - go build ./cmd/cetus