forked from callelito/DEMO_Jenkins_PlatformIO
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Jenkinsfile
50 lines (46 loc) · 1.04 KB
/
Jenkinsfile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
pipeline {
agent any
stages {
stage('Build') {
steps {
sh '''pio account logout || true
PLATFORMIO_AUTH_TOKEN=${BUILD_TOKEN} pio remote run -r
'''
}
}
stage('Software test') {
steps {
sh '''pio account logout || true
PLATFORMIO_AUTH_TOKEN=${TEST_TOKEN} pio remote test -e native -r'''
sh '''pio account logout || true
PLATFORMIO_AUTH_TOKEN=${TEST_TOKEN} pio remote test -r'''
}
}
stage('Hardware test') {
agent {
label 'PlatformIO-slave'
}
steps {
sh '''/home/jenkins/.local/bin/pio run -e uno -t upload --upload-port /dev/ttyUSB0
sleep 5
python test_scripts/check.py'''
}
}
stage('Deploy') {
agent {
label 'PlatformIO-slave'
}
when {
branch "master"
}
steps {
sh '''/home/jenkins/.local/bin/pio run -e megaatmega2560 -t upload --upload-port /dev/ttyUSB1
'''
}
}
}
environment {
BUILD_TOKEN = credentials('BUILD_TOKEN')
TEST_TOKEN = credentials('TEST_TOKEN')
}
}