From 7c649aa5a77f5ade76440558390aa223874d753c Mon Sep 17 00:00:00 2001 From: "jeremy.baker@northwestern.edu" Date: Tue, 26 Sep 2023 13:57:26 -0500 Subject: [PATCH] Jenkins: Bye --- Jenkinsfile | 51 --------------------------------------------------- 1 file changed, 51 deletions(-) delete mode 100644 Jenkinsfile diff --git a/Jenkinsfile b/Jenkinsfile deleted file mode 100644 index ca522a2..0000000 --- a/Jenkinsfile +++ /dev/null @@ -1,51 +0,0 @@ -#!/usr/bin/env groovy - -pipeline { - - agent any - - environment { - CREDENTIALS_FROM_ENVIRONMENT = 'true' - JAVA_HOME="${tool 'Liberica OpenJDK 17.0.4.1'}" - PATH="${env.JAVA_HOME}/bin:${env.PATH}" - } - - stages { - - stage('Build') { - steps { - sh "sbt -Dsbt.log.noformat=true \"playScrapeServer/publishLocal\"" - } - } - - stage('Test') { - steps { - sh "sbt -Dsbt.log.noformat=true \"playScrape/scripted play-scraper/absolute\" \"playScrape/scripted play-scraper/context\" \"playScrape/scripted play-scraper/delay\" \"playScrape/scripted play-scraper/simple\" \"playScrape/scripted play-scraper/versioned\"" - } - } - - stage('Test Upload') { - steps { - withCredentials([[$class: 'AmazonWebServicesCredentialsBinding', accessKeyVariable: 'AWS_ACCESS_KEY_ID', credentialsId: 'ccl-aws-deploy', secretKeyVariable: 'AWS_SECRET_ACCESS_KEY']]) { - sh "sbt -Dsbt.log.noformat=true \"playScrape/scripted play-scraper/upload\"" - } - } - } - - } - - post { - failure { - library 'netlogo-shared' - sendNotifications('NetLogo/Play-Scraper', 'FAILURE') - } - success { - library 'netlogo-shared' - sendNotifications('NetLogo/Play-Scraper', 'SUCCESS') - } - unstable { - library 'netlogo-shared' - sendNotifications('NetLogo/Play-Scraper', 'UNSTABLE') - } - } -}