Compare commits
4 Commits
v0.1.1
...
b0f6691a7d
Author | SHA1 | Date | |
---|---|---|---|
b0f6691a7d | |||
d510cdd50e | |||
9b4dd040c1 | |||
53ed60151c |
@ -5,7 +5,7 @@ steps:
|
|||||||
- name: build
|
- name: build
|
||||||
image: python:2
|
image: python:2
|
||||||
commands:
|
commands:
|
||||||
- apt-get -y update && apt-get -y install git && pip install platformio
|
- pip install platformio
|
||||||
- pio run
|
- pio run
|
||||||
- name: upload
|
- name: upload
|
||||||
image: python:2
|
image: python:2
|
||||||
@ -14,7 +14,7 @@ steps:
|
|||||||
- name: release
|
- name: release
|
||||||
image: plugins/gitea-release
|
image: plugins/gitea-release
|
||||||
settings:
|
settings:
|
||||||
api_key: ef6a0baa30f8994719e236370290ac9f8bbbdb1d
|
api_key: a7f3afc9f77e721951e48b4af66d7565700b7a2e
|
||||||
base_url: https://code.jcktrue.dk
|
base_url: https://code.jcktrue.dk
|
||||||
files:
|
files:
|
||||||
- .pioenvs/nodemcu/firmware.bin
|
- .pioenvs/nodemcu/firmware.bin
|
||||||
|
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'
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
@ -1,4 +1,5 @@
|
|||||||
|
[![Build Status](https://build.jcktrue.dk/api/badges/jct/deskcontrol/status.svg)](https://build.jcktrue.dk/jct/deskcontrol)
|
||||||
# README #
|
# README #
|
||||||
edit data/homie/config.json
|
* edit data/homie/config.json
|
||||||
platformio run -t upload
|
* platformio run -t upload
|
||||||
platformio run -t uploadfs
|
* platformio run -t uploadfs
|
Reference in New Issue
Block a user