Skip to content

Commit

Permalink
Build Release instead of Static in Android PRs
Browse files Browse the repository at this point in the history
  • Loading branch information
wknapik committed Mar 7, 2023
1 parent 2d1ee6f commit 33e4151
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Jenkinsfile
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ pipeline {

params = [
string(name: 'CHANNEL', value: params.CHANNEL),
string(name: 'BUILD_TYPE', value: params.BUILD_TYPE),
string(name: 'BUILD_TYPE', value: PLATFORM == 'android' ? 'Release' : params.BUILD_TYPE),
booleanParam(name: 'WIPE_WORKSPACE', value: params.WIPE_WORKSPACE),
booleanParam(name: 'USE_GOMA', value: params.USE_GOMA),
booleanParam(name: 'SKIP_SIGNING', value: params.SKIP_SIGNING),
Expand Down

0 comments on commit 33e4151

Please sign in to comment.