forked from electron/libchromiumcontent
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Jenkinsfile
147 lines (147 loc) · 6.01 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
pipeline {
agent none
stages {
stage('Build') {
parallel {
stage('libchromiumcontent-osx-shared') {
agent {
label 'osx-libcc'
}
environment {
LIBCHROMIUMCONTENT_GIT_CACHE = '/Volumes/LIBCC_CACHE'
COMPONENT = 'shared_library'
TARGET_ARCH = 'x64'
}
steps {
timeout(300) {
sh 'script/bootstrap'
sh 'script/update --clean -t $TARGET_ARCH'
sh 'script/build -t $TARGET_ARCH -c $COMPONENT'
sh 'script/build -t $TARGET_ARCH -c ffmpeg'
sh 'script/create-dist -t $TARGET_ARCH -c $COMPONENT'
script {
GIT_COMMIT = sh(returnStdout: true, script: "git rev-parse HEAD").trim()
}
withCredentials([string(credentialsId: 'libccbucket', variable: 'LIBCC_BUCKET')]) {
withAWS(credentials:'libccs3',region:'us-east-1') {
s3Upload(file:'libchromiumcontent.tar.bz2', bucket:"${LIBCC_BUCKET}", path:"libchromiumcontent/osx/${env.TARGET_ARCH}/${GIT_COMMIT}/libchromiumcontent.tar.bz2", acl:'PublicRead')
}
}
fileOperations([fileRenameOperation(destination: 'libchromiumcontent-osx.tar.bz2', source: 'libchromiumcontent.tar.bz2')])
}
}
post {
always {
archive 'libchromiumcontent-osx.tar.bz2'
cleanWs()
}
}
}
stage('libchromiumcontent-osx-static') {
agent {
label 'osx-libcc'
}
environment {
LIBCHROMIUMCONTENT_GIT_CACHE = '/Volumes/LIBCC_CACHE'
COMPONENT = 'static_library'
TARGET_ARCH = 'x64'
}
steps {
timeout(300) {
sh 'script/bootstrap'
sh 'script/update --clean -t $TARGET_ARCH'
sh 'script/build -t $TARGET_ARCH -c $COMPONENT'
sh 'script/build -t $TARGET_ARCH -c ffmpeg'
sh 'script/create-dist -t $TARGET_ARCH -c $COMPONENT'
script {
GIT_COMMIT = sh(returnStdout: true, script: "git rev-parse HEAD").trim()
}
withCredentials([string(credentialsId: 'libccbucket', variable: 'LIBCC_BUCKET')]) {
withAWS(credentials:'libccs3',region:'us-east-1') {
s3Upload(file:'libchromiumcontent-static.tar.bz2', bucket:"${LIBCC_BUCKET}", path:"libchromiumcontent/osx/${env.TARGET_ARCH}/${GIT_COMMIT}/libchromiumcontent-static.tar.bz2", acl:'PublicRead')
}
}
fileOperations([fileRenameOperation(destination: 'libchromiumcontent-static-osx.tar.bz2', source: 'libchromiumcontent-static.tar.bz2')])
}
}
post {
always {
archive 'libchromiumcontent-static-osx.tar.bz2'
cleanWs()
}
}
}
stage('libchromiumcontent-mas-shared') {
agent {
label 'osx-libcc'
}
environment {
MAS_BUILD = '1'
LIBCHROMIUMCONTENT_GIT_CACHE = '/Volumes/LIBCC_CACHE'
COMPONENT = 'shared_library'
TARGET_ARCH = 'x64'
}
steps {
timeout(300) {
sh 'script/bootstrap'
sh 'script/update --clean -t $TARGET_ARCH'
sh 'script/build -t $TARGET_ARCH -c $COMPONENT'
sh 'script/build -t $TARGET_ARCH -c ffmpeg'
sh 'script/create-dist -t $TARGET_ARCH -c $COMPONENT'
script {
GIT_COMMIT = sh(returnStdout: true, script: "git rev-parse HEAD").trim()
}
withCredentials([string(credentialsId: 'libccbucket', variable: 'LIBCC_BUCKET')]) {
withAWS(credentials:'libccs3',region:'us-east-1') {
s3Upload(file:'libchromiumcontent.tar.bz2', bucket:"${LIBCC_BUCKET}", path:"libchromiumcontent/mas/${env.TARGET_ARCH}/${GIT_COMMIT}/libchromiumcontent.tar.bz2", acl:'PublicRead')
}
}
fileOperations([fileRenameOperation(destination: 'libchromiumcontent-mas.tar.bz2', source: 'libchromiumcontent.tar.bz2')])
}
}
post {
always {
archive 'libchromiumcontent-mas.tar.bz2'
cleanWs()
}
}
}
stage('libchromiumcontent-mas-static') {
agent {
label 'osx-libcc'
}
environment {
MAS_BUILD = '1'
LIBCHROMIUMCONTENT_GIT_CACHE = '/Volumes/LIBCC_CACHE'
COMPONENT = 'static_library'
TARGET_ARCH = 'x64'
}
steps {
timeout(300) {
sh 'script/bootstrap'
sh 'script/update --clean -t $TARGET_ARCH'
sh 'script/build -t $TARGET_ARCH -c $COMPONENT'
sh 'script/build -t $TARGET_ARCH -c ffmpeg'
sh 'script/create-dist -t $TARGET_ARCH -c $COMPONENT'
script {
GIT_COMMIT = sh(returnStdout: true, script: "git rev-parse HEAD").trim()
}
withCredentials([string(credentialsId: 'libccbucket', variable: 'LIBCC_BUCKET')]) {
withAWS(credentials:'libccs3',region:'us-east-1') {
s3Upload(file:'libchromiumcontent-static.tar.bz2', bucket:"${LIBCC_BUCKET}", path:"libchromiumcontent/mas/${env.TARGET_ARCH}/${GIT_COMMIT}/libchromiumcontent-static.tar.bz2", acl:'PublicRead')
}
}
fileOperations([fileRenameOperation(destination: 'libchromiumcontent-mas-static.tar.bz2', source: 'libchromiumcontent-static.tar.bz2')])
}
}
post {
always {
archive 'libchromiumcontent-mas-static.tar.bz2'
cleanWs()
}
}
}
}
}
}
}