Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@ COPY --from=eclipse-temurin:17.0.20_8-jdk $JAVA_HOME $JAVA_HOME
ENV PATH="${JAVA_HOME}/bin:${PATH}"

ADD PROGRESS_OE.tar.gz /install/openedge/
ADD PROGRESS_PATCH_OE.tar.gz /install/patch/
ADD scripts/install-openedge.sh /install/

COPY oe128-db-dev-response.ini /install/openedge/response.ini
Expand Down
1 change: 0 additions & 1 deletion Dockerfile-gh
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@ ENV PATH="${JAVA_HOME}/bin:${PATH}"
# the running process (i.e. the github action) is responsible for placing the install .tar
# in the correct location
ADD PROGRESS_OE.tar.gz /install/openedge/
ADD PROGRESS_PATCH_OE.tar.gz /install/patch/
ADD scripts/install-openedge.sh /install/

COPY response.ini /install/openedge/response.ini
Expand Down
Binary file removed PROGRESS_PATCH_OE.tar.gz
Binary file not shown.
8 changes: 0 additions & 8 deletions scripts/download-openedge.sh
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,3 @@ echo base: ${OPENEDGE_BASE_VERSION}
echo version: ${OPENEDGE_VERSION}

docker run -v ${PWD}/src:/target devbfvio/oeinstaller:${OPENEDGE_VERSION}

if [[ "${OPENEDGE_VERSION}" > "12.8.3" ]]; then
echo ">=12.8.4 we need the base version as well"
mv ${PWD}/src/PROGRESS_OE.tar.gz ${PWD}/src/PROGRESS_PATCH_OE.tar.gz
echo "download base version ${OPENEDGE_BASE_VERSION}"
docker run -v ${PWD}/src:/target devbfvio/oeinstaller:${OPENEDGE_BASE_VERSION}
ls -l ${PWD}/src
fi
8 changes: 0 additions & 8 deletions scripts/install-openedge.sh
Original file line number Diff line number Diff line change
Expand Up @@ -4,14 +4,6 @@
echo "******** install base **************************************************************************************"
/install/openedge/proinst -b /install/openedge/response.ini -l /install/install_oe.log -n

if [ -f /install/patch/proinst ]; then
echo "Installing patch"
echo -e "\n[Update]\nProgressInstallDir=/usr/dlc\n" >> /install/openedge/response.ini
/install/patch/proinst -b /install/openedge/response.ini -l /install/install_patch.log -n
else
echo "No patch to install"
fi

cat /usr/dlc/version

echo "******** done **************************************************************************************"