/* * Copyright OpenSearch Contributors * SPDX-License-Identifier: Apache-2.0 * * The OpenSearch Contributors require contributions made to * this file be licensed under the Apache-2.0 license or a * compatible open source license. */ pipeline { agent none stages { stage('validate RPM meta') { steps { script { rpmMetaValidation( refMap: [Name:"opensearch", Version: "1.3.1", Architecture: "x64", Group: "Application/Internet", License: "Apache-2.0", Relocations: "(not relocatable)", URL: "https://opensearch.org/", Summary: "An open source distributed and RESTful search engine", Description: "OpenSearch makes it easy to ingest, search, visualize, and analyze your data\n" + "For more information, see: https://opensearch.org/" ], rpmDistribution: "/tmp/workspace/opensearch-1.3.1-linux-x64.rpm" ) } } } } }