This is an automated email from the ASF dual-hosted git repository.

danwatford pushed a commit to branch trunk
in repository https://gitbox.apache.org/repos/asf/ofbiz-framework.git


The following commit(s) were added to refs/heads/trunk by this push:
     new 648c212e76 Removed unnecessary steps when building docker image with 
plugins (OFBIZ-12876) (#682)
648c212e76 is described below

commit 648c212e769759038bbb7fccacd1ada3af09899d
Author: Daniel Watford <dan...@watfordconsulting.com>
AuthorDate: Mon Jan 8 20:08:15 2024 +0000

    Removed unnecessary steps when building docker image with plugins 
(OFBIZ-12876) (#682)
---
 .github/workflows/docker-image.yaml | 14 ++------------
 1 file changed, 2 insertions(+), 12 deletions(-)

diff --git a/.github/workflows/docker-image.yaml 
b/.github/workflows/docker-image.yaml
index cd9c384339..064936ed83 100644
--- a/.github/workflows/docker-image.yaml
+++ b/.github/workflows/docker-image.yaml
@@ -123,18 +123,8 @@ jobs:
         
############################################################################
         # Build and push a container image of the OFBiz Framework plus Plugins,
         # without any data loaded.
-        # We need to use gradle to download sources as plugins might include 
an install
-        # task in their own build.gradle files. If the project drops support 
for plugins'
-        # install tasks then we can replace the JDK and gradle related steps 
below with
-        # a git checkout from the https://github.com/apache/ofbiz-plugins 
repository.
-      - name: Set up JDK 17
-        uses: actions/setup-java@v3.6.0
-        with:
-          java-version: 17
-          distribution: temurin
-          cache: 'gradle'
-      - name: Grant execute permission for gradlew and pullAllPluginsSource.sh
-        run: chmod +x gradlew pullAllPluginsSource.sh
+      - name: Grant execute permission for pullAllPluginsSource.sh
+        run: chmod +x pullAllPluginsSource.sh
       - name: Load all plugins
         run: ./pullAllPluginsSource.sh
       - name: Determine metadata (tags, labels) for Docker framework with 
plugins build

Reply via email to