/* * 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 { rpmOpenSearchDistValidation( bundleManifest: "tests/data/opensearch-1.3.1-x64-rpm.yml", rpmDistribution: "/tmp/workspace/opensearch-1.3.1-linux-x64.rpm" ) } } } } }