iot-firmware/Jenkinsfile

25 lines
656 B
Plaintext
Raw Normal View History

2023-12-07 08:43:11 +00:00
pipeline {
agent any
stages {
2023-12-07 08:45:02 +00:00
stage('Clone') {
steps {
git branch: 'main', url: 'https://git.siwatsystem.com/ise-senior-iot/iot-firmware.git'
}
}
2023-12-07 08:43:11 +00:00
stage('Build') {
steps {
sh 'export PLATFORMIO_PATH=/root/.platformio/penv/bin/platformio'
2023-12-07 08:46:36 +00:00
sh 'python3 gen_release.py'
2023-12-07 08:43:11 +00:00
}
}
stage('Publish') {
steps {
sh 'mkdir -p artifacts'
sh 'cp -r release/ artifacts/'
archiveArtifacts artifacts: 'artifacts/**/*', fingerprint: true
}
}
}
}