This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"id": 3, | |
"name": "Globant", | |
"start_date": 1520797204, | |
"end_date": 0, | |
"logo": "https://endeavor.org/content/uploads/2015/07/Logo%20-%20Globant.png", | |
"designations": [ | |
"Sr. Software Engineer" | |
], | |
"role": [ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"user": "Rana Ranvijay Singh", | |
"image": "https://avatars0.githubusercontent.com/u/4836122?s=460&v=4", | |
"number": 9921237115, | |
"email": "[email protected]", | |
"career_summary": [ | |
"A software professional with around 6 years of experience in Software Development of Mobile application in the areas of Android.", | |
"Extensive hands-on development experience using Java.", | |
"Dedicated to continuously discovering, and implementing new technologies.", | |
"Proficient in OOP concepts, Agile methodologies & best coding standards", |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"id": 2, | |
"name": "The Lean Apps", | |
"start_date": 1478893204, | |
"end_date": 1520797204, | |
"logo": "https://media.licdn.com/dms/image/C4D0BAQFT_dRlbpid5A/company-logo_200_200/0?e=2159024400&v=beta&t=tDMG9jBUzyIS3z_047sz3kjScv0IflidgVS_TwVowTM", | |
"designations": [ | |
"Sr. Software Engineer" | |
], | |
"role": [ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"id": 1, | |
"name": "Webonise lab", | |
"start_date": 1370979604, | |
"end_date": 1478893204, | |
"logo": "https://media.glassdoor.com/sqll/532781/webonise-lab-squarelogo-1397159392536.png", | |
"designations": [ | |
"Software Engineer", | |
"Sr. Software Engineer" | |
], |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
pipeline { | |
agent any | |
stages { | |
stage('GIT PULL') { | |
steps { | |
git branch: "develop", url: 'https://github.com/RanaRanvijaySingh/FlutterStarter.git' | |
} | |
} | |
stage('TEST') { |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
stage('GIT PULL') { | |
steps { | |
git branch: "develop", url: 'https://github.com/RanaRanvijaySingh/FlutterStarter.git' | |
} | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
stage('TEST') { | |
steps { | |
sh 'flutter test' | |
} | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
stage('DISTRIBUTE') { | |
steps { | |
appCenter | |
apiToken: 'f51cd29ba6b2d34a84cd99bc37348db77624c614', | |
ownerName: 'ranaranvijaysingh9-gmail.com', | |
appName: 'Flutter-Starter', | |
pathToApp: 'build/app/outputs/apk/debug/app-debug.apk', | |
distributionGroups: 'AlphaTester' | |
} | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
stage('GIT PULL') { | |
steps { | |
git | |
branch: 'develop', | |
credentialsId: '69c1c56e-01f7-4e54-b762-4e5db8191bbb', | |
url: 'https://github.com/RanaRanvijaySingh/FlutterStarter.git' | |
} | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
stage('BUILD') { | |
steps { | |
sh ''' | |
#!/bin/sh | |
flutter build apk --debug | |
''' | |
} | |
} |
OlderNewer