forked from OpenAnnePro/AnnePro2-Shine
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathJenkinsfile
53 lines (51 loc) · 1.27 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
51
52
53
pipeline {
agent any
stages {
stage('Check style') {
agent {
label 'gcc-arm-none-eabi'
}
steps {
sh """make clang-format-ci"""
}
}
stage('Build') {
parallel {
stage('Build C15') {
agent {
label 'gcc-arm-none-eabi'
}
steps {
sh '''make C15'''
sh '''
cd build
tar czvf c15_archive.tgz C15
cd ..
'''
archiveArtifacts artifacts: 'build/C15/*.bin', followSymlinks: false
archiveArtifacts artifacts: 'build/*.tgz', followSymlinks: false
fingerprint 'build/C15/*.elf'
fingerprint 'build/C15/*.bin'
}
}
stage('Build C18') {
agent {
label 'gcc-arm-none-eabi'
}
steps {
sh '''make C18'''
sh '''
cd build
tar czvf c18_archive.tgz C18
cd ..
'''
archiveArtifacts artifacts: 'build/C18/*.bin', followSymlinks: false
archiveArtifacts artifacts: 'build/*.tgz', followSymlinks: false
fingerprint 'build/C18/*.elf'
fingerprint 'build/C18/*.bin'
}
}
}
}
}
}