Skip to content

Instantly share code, notes, and snippets.

View RanaRanvijaySingh's full-sized avatar

Rana Ranvijay Singh RanaRanvijaySingh

View GitHub Profile
{
"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": [
{
"user": "Rana Ranvijay Singh",
"image": "https://avatars0.githubusercontent.com/u/4836122?s=460&v=4",
"number": 9921237115,
"email": "ranaranvijaysingh9@gmail.com",
"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",
{
"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": [
{
"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"
],
@RanaRanvijaySingh
RanaRanvijaySingh / JenkinsFile.groovy
Last active February 7, 2020 08:11
BasicJenkinsPipelineBuild
pipeline {
agent any
stages {
stage('GIT PULL') {
steps {
git branch: "develop", url: 'https://github.com/RanaRanvijaySingh/FlutterStarter.git'
}
}
stage('TEST') {
stage('GIT PULL') {
steps {
git branch: "develop", url: 'https://github.com/RanaRanvijaySingh/FlutterStarter.git'
}
}
stage('TEST') {
steps {
sh 'flutter test'
}
}
stage('DISTRIBUTE') {
steps {
appCenter
apiToken: 'f51cd29ba6b2d34a84cd99bc37348db77624c614',
ownerName: 'ranaranvijaysingh9-gmail.com',
appName: 'Flutter-Starter',
pathToApp: 'build/app/outputs/apk/debug/app-debug.apk',
distributionGroups: 'AlphaTester'
}
}
stage('GIT PULL') {
steps {
git
branch: 'develop',
credentialsId: '69c1c56e-01f7-4e54-b762-4e5db8191bbb',
url: 'https://github.com/RanaRanvijaySingh/FlutterStarter.git'
}
}
stage('BUILD') {
steps {
sh '''
#!/bin/sh
flutter build apk --debug
'''
}
}