Skip to content

Commit

Permalink
Update indexfile to unstable stages
Browse files Browse the repository at this point in the history
Signed-off-by: Divya Madala <[email protected]>
  • Loading branch information
Divyaasm committed Jan 9, 2024
1 parent 89fea39 commit f564ca7
Show file tree
Hide file tree
Showing 2 changed files with 126 additions and 0 deletions.
63 changes: 63 additions & 0 deletions jenkins/opensearch-dashboards/distribution-build.jenkinsfile
Original file line number Diff line number Diff line change
Expand Up @@ -234,6 +234,15 @@ pipeline {
}
}
}
unstable {
script {
if (params.UPDATE_LATEST_URL) {
uploadIndexFile(
indexFilePath: env.INDEX_FILE_PATH_X64_TAR
)
}
}
}
always {
script {
lib.jenkins.Messages.new(this).add(
Expand Down Expand Up @@ -347,6 +356,15 @@ pipeline {
}
}
}
unstable {
script {
if (params.UPDATE_LATEST_URL) {
uploadIndexFile(
indexFilePath: env.INDEX_FILE_PATH_X64_RPM
)
}
}
}
always {
script {
lib.jenkins.Messages.new(this).add(
Expand Down Expand Up @@ -450,6 +468,15 @@ pipeline {
}
}
}
unstable {
script {
if (params.UPDATE_LATEST_URL) {
uploadIndexFile(
indexFilePath: env.INDEX_FILE_PATH_X64_DEB
)
}
}
}
always {
script {
lib.jenkins.Messages.new(this).add(
Expand Down Expand Up @@ -592,6 +619,15 @@ pipeline {
}
}
}
unstable {
script {
if (params.UPDATE_LATEST_URL) {
uploadIndexFile(
indexFilePath: env.INDEX_FILE_PATH_ARM64_TAR
)
}
}
}
always {
script {
lib.jenkins.Messages.new(this).add(
Expand Down Expand Up @@ -708,6 +744,15 @@ pipeline {
}
}
}
unstable {
script {
if (params.UPDATE_LATEST_URL) {
uploadIndexFile(
indexFilePath: env.INDEX_FILE_PATH_ARM64_TAR
)
}
}
}
always {
script {
lib.jenkins.Messages.new(this).add(
Expand Down Expand Up @@ -811,6 +856,15 @@ pipeline {
}
}
}
unstable {
script {
if (params.UPDATE_LATEST_URL) {
uploadIndexFile(
indexFilePath: env.INDEX_FILE_PATH_ARM64_DEB
)
}
}
}
always {
script {
lib.jenkins.Messages.new(this).add(
Expand Down Expand Up @@ -875,6 +929,15 @@ pipeline {
}
}
}
unstable {
script {
if (params.UPDATE_LATEST_URL) {
uploadIndexFile(
indexFilePath: env.INDEX_FILE_PATH_X64_ZIP
)
}
}
}
always {
script {
lib.jenkins.Messages.new(this).add(
Expand Down
63 changes: 63 additions & 0 deletions jenkins/opensearch/distribution-build.jenkinsfile
Original file line number Diff line number Diff line change
Expand Up @@ -223,6 +223,15 @@ pipeline {
}
}
}
unstable {
script {
if (params.UPDATE_LATEST_URL) {
uploadIndexFile(
indexFilePath: env.INDEX_FILE_PATH_X64_TAR
)
}
}
}
always {
script {
lib.jenkins.Messages.new(this).add(
Expand Down Expand Up @@ -331,6 +340,15 @@ pipeline {
}
}
}
unstable {
script {
if (params.UPDATE_LATEST_URL) {
uploadIndexFile(
indexFilePath: env.INDEX_FILE_PATH_X64_RPM
)
}
}
}
always {
script {
lib.jenkins.Messages.new(this).add(
Expand Down Expand Up @@ -428,6 +446,15 @@ pipeline {
}
}
}
unstable {
script {
if (params.UPDATE_LATEST_URL) {
uploadIndexFile(
indexFilePath: env.INDEX_FILE_PATH_X64_DEB
)
}
}
}
always {
script {
lib.jenkins.Messages.new(this).add(
Expand Down Expand Up @@ -505,6 +532,15 @@ pipeline {
}
}
}
unstable {
script {
if (params.UPDATE_LATEST_URL) {
uploadIndexFile(
indexFilePath: env.INDEX_FILE_PATH_ARM64_TAR
)
}
}
}
always {
script {
lib.jenkins.Messages.new(this).add(
Expand Down Expand Up @@ -613,6 +649,15 @@ pipeline {
}
}
}
unstable {
script {
if (params.UPDATE_LATEST_URL) {
uploadIndexFile(
indexFilePath: env.INDEX_FILE_PATH_ARM64_RPM
)
}
}
}
always {
script {
lib.jenkins.Messages.new(this).add(
Expand Down Expand Up @@ -710,6 +755,15 @@ pipeline {
}
}
}
unstable {
script {
if (params.UPDATE_LATEST_URL) {
uploadIndexFile(
indexFilePath: env.INDEX_FILE_PATH_ARM64_DEB
)
}
}
}
always {
script {
lib.jenkins.Messages.new(this).add(
Expand Down Expand Up @@ -769,6 +823,15 @@ pipeline {
}
}
}
unstable {
script {
if (params.UPDATE_LATEST_URL) {
uploadIndexFile(
indexFilePath: env.INDEX_FILE_PATH_X64_ZIP
)
}
}
}
always {
script {
lib.jenkins.Messages.new(this).add(
Expand Down

0 comments on commit f564ca7

Please sign in to comment.