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
2 changes: 1 addition & 1 deletion .github/workflows/ci-dev.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:

strategy:
matrix:
version: [ 12.8.3, 12.8.8 ]
version: [ 12.8.12 ]

steps:

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/ci-prod.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:

strategy:
matrix:
version: [ 12.8.3 ]
version: [ 12.8.12 ]

steps:

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/copytag.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ on:
source_tag:
type: string
description: "source tag"
default: "12.8.8"
default: "12.8.12"
required: true
target_tag:
type: string
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/publish-dev.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ on:
openedgeversion:
type: string
description: "enter OpenEdge version (x.y.z, f.e. 12.8.8)"
default: "12.8.8"
default: "12.8.12"
required: true
imagetag:
type: string
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/publish-prod.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ on:
openedgeversion:
type: string
description: "enter OpenEdge version (x.y.z, f.e. 12.7.0)"
default: "12.8.3"
default: "12.8.12"
required: true
imagetag:
type: string
Expand Down
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 **************************************************************************************"
Loading