From c24c504350e6ca636b7f59a36ee8e9ed886d07a0 Mon Sep 17 00:00:00 2001 From: Anthony Stirling <77850077+Frooodle@users.noreply.github.com> Date: Sat, 16 Nov 2024 11:22:17 +0000 Subject: [PATCH] Delete Jenkinsfile --- Jenkinsfile | 45 --------------------------------------------- 1 file changed, 45 deletions(-) delete mode 100644 Jenkinsfile diff --git a/Jenkinsfile b/Jenkinsfile deleted file mode 100644 index 7806eb92..00000000 --- a/Jenkinsfile +++ /dev/null @@ -1,45 +0,0 @@ -pipeline { - agent any - stages { - stage('Build') { - steps { - sh 'chmod 755 gradlew' - sh './gradlew build' - } - } - stage('Docker Build') { - steps { - script { - def appVersion = sh(returnStdout: true, script: './gradlew printVersion -q').trim() - def image = "frooodle/s-pdf:$appVersion" - sh "docker build -t $image ." - } - } - } - stage('Docker Push') { - steps { - script { - def appVersion = sh(returnStdout: true, script: './gradlew printVersion -q').trim() - def image = "frooodle/s-pdf:$appVersion" - withCredentials([string(credentialsId: 'docker_hub_access_token', variable: 'DOCKER_HUB_ACCESS_TOKEN')]) { - sh "docker login --username frooodle --password $DOCKER_HUB_ACCESS_TOKEN" - sh "docker push $image" - } - } - } - } - stage('Helm Push') { - steps { - script { - //TODO: Read chartVersion from Chart.yaml - def chartVersion = '1.0.0' - withCredentials([string(credentialsId: 'docker_hub_access_token', variable: 'DOCKER_HUB_ACCESS_TOKEN')]) { - sh "docker login --username frooodle --password $DOCKER_HUB_ACCESS_TOKEN" - sh "helm package chart/stirling-pdf" - sh "helm push stirling-pdf-chart-1.0.0.tgz oci://registry-1.docker.io/frooodle" - } - } - } - } - } -} \ No newline at end of file