summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorAman Gupta2024-05-19 01:05:36 +0530
committerAman Gupta2024-05-19 01:05:36 +0530
commitc317b9f7cb7c5df2afc51c1957370c6901a04fcc (patch)
tree61461671d0e4dd468bc56fc14eb8ceaba1f2ccaa
parentae31da6e4d3d903001a3234079f3e18bf5f70746 (diff)
downloadaur-c317b9f7cb7c5df2afc51c1957370c6901a04fcc.tar.gz
Basic Finished Pipeline
-rw-r--r--Jenkinsfile9
1 files changed, 4 insertions, 5 deletions
diff --git a/Jenkinsfile b/Jenkinsfile
index 9e8d9159d00c..15a66a665cd5 100644
--- a/Jenkinsfile
+++ b/Jenkinsfile
@@ -2,11 +2,10 @@
pipeline {
agent any
environment {
- // VERSION = """${sh(
- // returnStdout: true,
- // script: "curl https://api.github.com/repos/elastic/logstash/releases/latest | jq -r '.tag_name' | cut -c2- | tr -d '\n'"
- // )}"""
- VERSION = "8.13.1"
+ VERSION = """${sh(
+ returnStdout: true,
+ script: "curl https://api.github.com/repos/elastic/logstash/releases/latest | jq -r '.tag_name' | cut -c2- | tr -d '\n'"
+ )}"""
}
stages {
stage('Checkout') {