-
Notifications
You must be signed in to change notification settings - Fork 108
/
Jenkinsfile
52 lines (52 loc) · 1.07 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
pipeline {
agent any
stages {
stage('initial_setup') {
steps {
sh '''cd android
fastlane clean_old_artifacts
fastlane save_git_log'''
}
}
stage('viroreact_aar') {
steps {
sh '''cd android
fastlane virorenderer_viroreact_aar'''
}
}
stage('virocore_aar') {
steps {
sh '''cd android
fastlane virorenderer_virocore_aar'''
}
}
stage('virokit_framework (ios)') {
steps {
sh '''cd ios
fastlane virorender_viroreact_virokit
fastlane virorender_viroreact_virokit_static_lib'''
}
}
stage('releasetest') {
steps {
sh '''cd android
fastlane renderer_releasetest'''
}
}
stage('memoryleaktest') {
steps {
sh '''cd android
fastlane renderer_memoryleaktest'''
}
}
stage('start react-viro') {
steps {
build(job: 'react-viro/'+env.BRANCH_NAME, propagate: true, wait: true)
}
}
}
environment {
LC_ALL = 'en_US.UTF-8'
LANG = 'en_US.UTF-8'
}
}