118 lines
		
	
	
		
			3.2 KiB
		
	
	
	
		
			Groovy
		
	
	
	
	
	
			
		
		
	
	
			118 lines
		
	
	
		
			3.2 KiB
		
	
	
	
		
			Groovy
		
	
	
	
	
	
library('pipeline-library')
 | 
						|
 | 
						|
pipeline {
 | 
						|
  options { timestamps() }
 | 
						|
  agent any
 | 
						|
  environment {
 | 
						|
    SERVICE = 'auto-semver'
 | 
						|
    GITHUB_KEY = 'autosemverDeployKey'
 | 
						|
    GITHUB_URL = 'git@github.com:RightBrain-Networks/auto-semver.git'
 | 
						|
    DOCKER_REGISTRY = '356438515751.dkr.ecr.us-east-1.amazonaws.com'
 | 
						|
 | 
						|
 | 
						|
    //Image tag to use for self-versioning
 | 
						|
    SELF_SEMVER_TAG = "bugfix.pipeline"
 | 
						|
    
 | 
						|
  }
 | 
						|
  stages {
 | 
						|
    //Pulls docker image for self-versioning
 | 
						|
    stage("Pull Versioning Image")
 | 
						|
    {
 | 
						|
        steps
 | 
						|
        {
 | 
						|
          withEcr {
 | 
						|
            sh "docker pull ${DOCKER_REGISTRY}/auto-semver:${SELF_SEMVER_TAG}"
 | 
						|
          }
 | 
						|
        }
 | 
						|
    }
 | 
						|
    //Runs versioning in docker container
 | 
						|
    stage('Version') {
 | 
						|
        agent {
 | 
						|
            docker {
 | 
						|
                image "${DOCKER_REGISTRY}/auto-semver:${SELF_SEMVER_TAG}"
 | 
						|
            }
 | 
						|
        }
 | 
						|
      steps {
 | 
						|
        // runs the automatic semver tool which will version, & tag,
 | 
						|
        runAutoSemver()
 | 
						|
 | 
						|
        //Grabs current version
 | 
						|
        script
 | 
						|
        {
 | 
						|
            env.VERSION = getVersion('-d')
 | 
						|
        }
 | 
						|
      }
 | 
						|
      post{
 | 
						|
        // Update Git with status of version stage.
 | 
						|
        success {
 | 
						|
          updateGithubCommitStatus(GITHUB_URL, 'Passed version stage', 'SUCCESS', 'Version')
 | 
						|
        }
 | 
						|
        failure {
 | 
						|
          updateGithubCommitStatus(GITHUB_URL, 'Failed version stage', 'FAILURE', 'Version')
 | 
						|
        }
 | 
						|
      }
 | 
						|
    }
 | 
						|
    stage('Build') {
 | 
						|
      steps {
 | 
						|
 | 
						|
        echo "Building ${env.SERVICE} docker image"
 | 
						|
 | 
						|
        // Docker build flags are set via the getDockerBuildFlags() shared library.
 | 
						|
        sh "docker build ${getDockerBuildFlags()} -t ${env.DOCKER_REGISTRY}/${env.SERVICE}:${env.VERSION} ."
 | 
						|
 | 
						|
        sh "python setup.py sdist"
 | 
						|
      }
 | 
						|
      post{
 | 
						|
        // Update Git with status of build stage.
 | 
						|
        success {
 | 
						|
          updateGithubCommitStatus(GITHUB_URL, 'Passed build stage', 'SUCCESS', 'Build')
 | 
						|
        }
 | 
						|
        failure {
 | 
						|
          updateGithubCommitStatus(GITHUB_URL, 'Failed build stage', 'FAILURE', 'Build')
 | 
						|
        }
 | 
						|
      }
 | 
						|
    }
 | 
						|
    stage('Push')
 | 
						|
    {
 | 
						|
      steps {     
 | 
						|
        withEcr {
 | 
						|
            sh "docker push ${env.DOCKER_REGISTRY}/${env.SERVICE}:${env.VERSION}"
 | 
						|
            script
 | 
						|
            {
 | 
						|
              if("${env.BRANCH_NAME}" == "develop")
 | 
						|
              {
 | 
						|
                sh "docker tag ${env.DOCKER_REGISTRY}/${env.SERVICE}:${env.VERSION} ${env.DOCKER_REGISTRY}/${env.SERVICE}:latest"
 | 
						|
                sh "docker push ${env.DOCKER_REGISTRY}/${env.SERVICE}:latest"
 | 
						|
              }
 | 
						|
            }
 | 
						|
        }
 | 
						|
        sh "aws s3 cp $(ls dist/ | grep semver) s3://rbn-ops-pkg-us-east-1/${env.SERVICE}/${env.SERVICE}-${env.VERSION}.tar.gz"
 | 
						|
        
 | 
						|
      }
 | 
						|
      post
 | 
						|
      {
 | 
						|
        // Update Git with status of push stage.
 | 
						|
        success {
 | 
						|
            updateGithubCommitStatus(GITHUB_URL, 'Passed push stage', 'SUCCESS', 'Push')
 | 
						|
        }
 | 
						|
        failure {
 | 
						|
            updateGithubCommitStatus(GITHUB_URL, 'Failed push stage', 'FAILURE', 'Push')
 | 
						|
        }
 | 
						|
      }
 | 
						|
    }
 | 
						|
    stage('Push Version and Tag') {
 | 
						|
        steps {
 | 
						|
            echo "The current branch is ${env.BRANCH_NAME}."
 | 
						|
            gitPush(env.GITHUB_KEY, env.BRANCH_NAME, true)
 | 
						|
        }
 | 
						|
    }
 | 
						|
  }
 | 
						|
  post {
 | 
						|
      always {
 | 
						|
          removeDockerImages()
 | 
						|
          cleanWs()
 | 
						|
      }
 | 
						|
  }
 | 
						|
  
 | 
						|
}
 |