Skip to content

Commit

Permalink
feat: add fdroid to jenkins script (#2814)
Browse files Browse the repository at this point in the history
Co-authored-by: Lisa Marie Maginnis <lisa.marie@hypatiahelps.org>
  • Loading branch information
MohamadJaara and e-lisa committed Mar 25, 2024
1 parent bfc274c commit abd7f34
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion AR-builder.groovy
Expand Up @@ -65,7 +65,7 @@ pipeline {
string(name: 'SOURCE_BRANCH', description: 'Branch or PR name to')
string(name: 'CHANGE_BRANCH', description: 'Change branch name to build only used to checkout the correct branch if you need the branch name use SOURCE_BRANCH')
choice(name: 'BUILD_TYPE', choices: ['Compatrelease', 'Debug', 'Release', 'Compat'], description: 'Build Type for the Client')
choice(name: 'FLAVOR', choices: ['Prod', 'Dev', 'Staging', 'Internal', 'Beta'], description: 'Product Flavor to build')
choice(name: 'FLAVOR', choices: ['Prod', 'Fdroid', 'Dev', 'Staging', 'Internal', 'Beta'], description: 'Product Flavor to build')
booleanParam(name: 'UPLOAD_TO_S3', defaultValue: false, description: 'Boolean Flag to define if the build should be uploaded to S3')
booleanParam(name: 'UPLOAD_TO_PLAYSTORE_ENABLED', defaultValue: false, description: 'Boolean Flag to define if the build should be uploaded to Playstore')
booleanParam(name: 'RUN_UNIT_TEST', defaultValue: true, description: 'Boolean Flag to define if the unit tests should be run')
Expand Down
2 changes: 1 addition & 1 deletion Jenkinsfile
Expand Up @@ -12,7 +12,7 @@ List<String> defineFlavor() {
} else if (branchName == "develop") {
return ['Staging', 'Dev']
} else if (branchName == "prod") {
return ['Prod']
return ['Prod', 'Fdroid']
} else if (branchName == "internal") {
return ['Internal']
}
Expand Down

0 comments on commit abd7f34

Please sign in to comment.