Browse Source

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.
JNI-157
Devan Carpenter 4 years ago
parent
commit
a6f7abf2f0
  1. 2
      scripts/centos8/Makefile

2
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) \

Loading…
Cancel
Save