Compare commits
6 Commits
Author | SHA1 | Date | |
---|---|---|---|
b0a485d578 | |||
3d4399c33d | |||
a33780a3a7 | |||
d2cd7f3445 | |||
b0f6691a7d | |||
d510cdd50e |
10
.drone.yml
10
.drone.yml
@ -3,12 +3,12 @@ name: default
|
||||
|
||||
steps:
|
||||
- name: build
|
||||
image: python:2
|
||||
image: python:3
|
||||
commands:
|
||||
- pip install platformio
|
||||
- pio run
|
||||
- name: upload
|
||||
image: python:2
|
||||
image: python:3
|
||||
commands:
|
||||
- make otaupload
|
||||
- name: release
|
||||
@ -17,7 +17,7 @@ steps:
|
||||
api_key: a7f3afc9f77e721951e48b4af66d7565700b7a2e
|
||||
base_url: https://code.jcktrue.dk
|
||||
files:
|
||||
- .pioenvs/nodemcu/firmware.bin
|
||||
- .pioenvs/nodemcu/firmware.elf
|
||||
- .pio/build/nodemcu/firmware.bin
|
||||
- .pio/build/nodemcu/firmware.elf
|
||||
when:
|
||||
event: tag
|
||||
event: tag
|
||||
|
41
Jenkinsfile
vendored
41
Jenkinsfile
vendored
@ -1,41 +0,0 @@
|
||||
pipeline {
|
||||
agent {
|
||||
docker {
|
||||
image 'debian:stretch-slim'
|
||||
}
|
||||
}
|
||||
|
||||
stages {
|
||||
stage('Requirements') {
|
||||
steps {
|
||||
sh 'apt-get -y update && apt-get -y install git python-pip cloc && pip install platformio'
|
||||
}
|
||||
}
|
||||
stage('Build') {
|
||||
steps {
|
||||
sh 'pio run'
|
||||
}
|
||||
post {
|
||||
always {
|
||||
archiveArtifacts '.pioenvs/nodemcu/firmware.bin, .pioenvs/nodemcu/firmware.elf'
|
||||
}
|
||||
}
|
||||
}
|
||||
stage('Coverage') {
|
||||
steps {
|
||||
sh 'cloc --by-file --xml --out=.test/cloc.xml src include'
|
||||
}
|
||||
post {
|
||||
always {
|
||||
recordIssues(tools: [taskScanner(ignoreCase: true, includePattern: 'src/*.*', normalTags: 'TODO')])
|
||||
sloccountPublish encoding: '', pattern: '.test/cloc.xml'
|
||||
}
|
||||
}
|
||||
}
|
||||
stage('Upload') {
|
||||
steps {
|
||||
sh 'make otaupload'
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
4
Makefile
4
Makefile
@ -2,5 +2,5 @@ build:
|
||||
pio run
|
||||
|
||||
otaupload:
|
||||
pip install -r .piolibdeps/Homie/scripts/ota_updater/requirements.txt
|
||||
python .piolibdeps/Homie/scripts/ota_updater/ota_updater.py -l mqtt.jcktrue.dk -i 18fe34f2f987 .pioenvs/nodemcu/firmware.bin
|
||||
pip install -r .pio/libdeps/nodemcu/Homie/scripts/ota_updater/requirements.txt
|
||||
python .pio/libdeps/Homie/scripts/ota_updater/ota_updater.py -l mqtt.jcktrue.dk -i 18fe34f2f987 .pio/build/nodemcu/firmware.bin
|
||||
|
@ -1,4 +1,5 @@
|
||||
[![Build Status](https://build.jcktrue.dk/api/badges/jct/deskcontrol/status.svg)](https://build.jcktrue.dk/jct/deskcontrol)
|
||||
# README #
|
||||
edit data/homie/config.json
|
||||
platformio run -t upload
|
||||
platformio run -t uploadfs
|
||||
* edit data/homie/config.json
|
||||
* platformio run -t upload
|
||||
* platformio run -t uploadfs
|
Reference in New Issue
Block a user