mirror of
https://github.com/cmur2/miflorad.git
synced 2024-12-22 02:54:24 +01:00
module: setup Travis CI
This commit is contained in:
parent
2a0e220b8e
commit
d419347dd3
9
.travis.yml
Normal file
9
.travis.yml
Normal file
@ -0,0 +1,9 @@
|
|||||||
|
---
|
||||||
|
sudo: false
|
||||||
|
language: go
|
||||||
|
go:
|
||||||
|
- "1.11.x"
|
||||||
|
- master
|
||||||
|
|
||||||
|
env:
|
||||||
|
- GO111MODULE=on
|
21
Makefile
Normal file
21
Makefile
Normal file
@ -0,0 +1,21 @@
|
|||||||
|
.POSIX:
|
||||||
|
|
||||||
|
.PHONY: all
|
||||||
|
all: clean build test
|
||||||
|
|
||||||
|
.PHONY: run
|
||||||
|
run: clean build test
|
||||||
|
sudo cmd/munin-miflora/munin-miflora xyz 00:00:00:00:00:00
|
||||||
|
|
||||||
|
.PHONY: clean
|
||||||
|
clean:
|
||||||
|
rm -f cmd/munin-miflora/munin-miflora
|
||||||
|
|
||||||
|
.PHONY: build
|
||||||
|
build: cmd/munin-miflora/munin-miflora
|
||||||
|
|
||||||
|
.PHONY: test
|
||||||
|
test: build
|
||||||
|
|
||||||
|
cmd/munin-miflora/munin-miflora:
|
||||||
|
cd cmd/munin-miflora && go build && cd ../..
|
@ -1,5 +1,7 @@
|
|||||||
# miflorad
|
# miflorad
|
||||||
|
|
||||||
|
[![Build Status](https://travis-ci.org/cmur2/miflorad.svg?branch=master)](https://travis-ci.org/cmur2/miflorad)
|
||||||
|
|
||||||
This project aims to produce tools written in Go for interfacing with Xiaomi Flora sensors for IoT use cases.
|
This project aims to produce tools written in Go for interfacing with Xiaomi Flora sensors for IoT use cases.
|
||||||
|
|
||||||
## Misc
|
## Misc
|
||||||
|
Loading…
Reference in New Issue
Block a user