iot-firmware/Jenkinsfile

20 lines
483 B
Plaintext
Raw Normal View History

2023-12-07 08:43:11 +00:00
pipeline {
agent any
stages {
stage('Build') {
steps {
sh 'export PLATFORMIO_PATH=/root/.platformio/penv/bin/platformio'
sh 'python gen_release.py'
}
}
stage('Publish') {
steps {
sh 'mkdir -p artifacts'
sh 'cp -r release/ artifacts/'
archiveArtifacts artifacts: 'artifacts/**/*', fingerprint: true
}
}
}
}