@Library('ci-shared-lib') _
pipeline {
  agent any
  stages {
    stage('Build') {
      steps {
        buildApp()
      }
    }
  }
}
