Update CI
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
2022-01-20 21:35:37 +01:00
parent f05c4bbcc7
commit ac4b86fd03
4 changed files with 47 additions and 20 deletions

View File

@@ -1,29 +1,28 @@
---
kind: pipeline
type: kubernetes
name: build-linux-amd64
name: build-clis
steps:
- name: build
image: golang:1.17
environment:
GOOS: linux
GOARCH: amd64
commands:
- "go build -o covergen_$GOOS-$GOARCH ./cmd/covergen"
---
kind: pipeline
type: kubernetes
name: build-darwin-amd64
- make build-cross-clis
- name: upload
image: plugins/s3
settings:
bucket: covergen
source: dist/*
target: /dist/
strip_prefix: dist/
path_style: true
endpoint: https://s3.blacknova.io
access_key:
from_secret: minio_access_key_id
secret_key:
from_secret: minio_secret_access_key
steps:
- name: build
image: golang:1.17
environment:
GOOS: darwin
GOARCH: amd64
commands:
- "go build -o covergen_$GOOS-$GOARCH ./cmd/covergen"
---
kind: pipeline
type: kubernetes
@@ -37,3 +36,18 @@ steps:
GOARCH: wasm
commands:
- make wasm
- name: upload
image: plugins/s3
settings:
bucket: covergen
source: assets/**/*
target: /
strip_prefix: assets/
path_style: true
endpoint: https://s3.blacknova.io
access_key:
from_secret: minio_access_key_id
secret_key:
from_secret: minio_secret_access_key

3
.gitignore vendored
View File

@@ -1,4 +1,5 @@
covergen
!covergen/
*.pdf
assets/*.wasm
assets/*.wasm
dist/

View File

@@ -1,3 +1,9 @@
.PHONY: build-cross-clis
build-cross-clis:
rm -rf ./dist && mkdir ./dist
GOOS=linux GOARCH=amd64 go build -o dist/covergen.linux-amd64 ./cmd/covergen
GOOS=darwin GOARCH=amd64 go build -o dist/covergen.darwin-amd64 ./cmd/covergen
.PHONY: wasm
wasm:
GOOS=js GOARCH=wasm go build -o assets/covergen.wasm ./cmd/wasm/main.go
.PHONY: wasm

View File

@@ -89,5 +89,11 @@
<iframe id="front"></iframe>
<iframe id="back"></iframe>
</div>
<div class="download-links">
Download the CLI:
<a href="/dist/covergen.linux-amd64">Linux amd64</a>
<a href="/dist/covergen.darwin-amd64">Darwin amd64</a>
</div>
</body>
</html>
</html>