From 992988ac9cb9c39f8e0a9ba29ffc39de06a226b5 Mon Sep 17 00:00:00 2001 From: Devan Carpenter Date: Wed, 21 Jul 2021 01:03:20 -0700 Subject: [PATCH] CI: match RPM version string to JNI Adapter When creating the RPM package we should use the version of the JNI Adapter itself to version the package. It was using libpEpAdapter version which was incorrect. --- scripts/centos8/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/centos8/Makefile b/scripts/centos8/Makefile index 4d94155..c220e36 100644 --- a/scripts/centos8/Makefile +++ b/scripts/centos8/Makefile @@ -67,7 +67,7 @@ rpm: @docker push $(PKG_BUILD_IMAGE)-jniadapter:$(PEPJNIADAPTER_VERSION) @docker push $(PKG_BUILD_IMAGE)-jniadapter:latest @docker run -e PEPJNIADAPTER_VERSION=$(PEPJNIADAPTER_VERSION) \ - -e PKG_VERSION=$(LIBPEPADAPTER_VERSION) \ + -e PKG_VERSION=$(PEPJNIADAPTER_VERSION) \ -e PKG_INSTALL_PATH=$(PKG_INSTALL_PATH) \ -e PKG_NAME=$(PKG_NAME) \ -e PKG_DESCRIPTION=$(PKG_DESCRIPTION) \