You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@tinkerpop.apache.org by sp...@apache.org on 2022/07/13 10:42:23 UTC

[tinkerpop] branch ci-fix updated (d1ff8f7690 -> 26852b7fee)

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

spmallette pushed a change to branch ci-fix
in repository https://gitbox.apache.org/repos/asf/tinkerpop.git


 discard d1ff8f7690 Restructure gremlin-go build to use maven
     add 49eaa0691b Restructure gremlin-go build to use maven
     new e40c7f8b5b Rebuild Gremlin Server docker images on each execution
     new 5eabb8efb6 f
     new 26852b7fee f

This update added new revisions after undoing existing revisions.
That is to say, some revisions that were in the old version of the
branch are not in the new version.  This situation occurs
when a user --force pushes a change and generates a repository
containing something like this:

 * -- * -- B -- O -- O -- O   (d1ff8f7690)
            \
             N -- N -- N   refs/heads/ci-fix (26852b7fee)

You should already have received notification emails for all of the O
revisions, and so the following emails describe only the N revisions
from the common base, B.

Any revisions marked "omit" are not gone; other references still
refer to them.  Any revisions marked "discard" are gone forever.

The 3 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 .github/workflows/build-test.yml |  3 +--
 gremlin-server/pom.xml           | 23 +++++++++++++++++++++++
 2 files changed, 24 insertions(+), 2 deletions(-)


[tinkerpop] 01/03: Rebuild Gremlin Server docker images on each execution

Posted by sp...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

spmallette pushed a commit to branch ci-fix
in repository https://gitbox.apache.org/repos/asf/tinkerpop.git

commit e40c7f8b5b56edd0cb475e6d0b2f3b50c7b674e2
Author: Stephen Mallette <st...@amazon.com>
AuthorDate: Wed Jul 13 06:36:25 2022 -0400

    Rebuild Gremlin Server docker images on each execution
    
    This ensure that the latest Gremlin Server changes are available to other modules that rely on them for testing. Also, for a basic mvn clean install for a fresh system the docker image isn't present and the build will end in error. CTR
---
 gremlin-server/pom.xml | 23 +++++++++++++++++++++++
 1 file changed, 23 insertions(+)

diff --git a/gremlin-server/pom.xml b/gremlin-server/pom.xml
index 48cbf98f67..794b426083 100644
--- a/gremlin-server/pom.xml
+++ b/gremlin-server/pom.xml
@@ -148,8 +148,31 @@ limitations under the License.
                 <groupId>org.apache.maven.plugins</groupId>
                 <artifactId>maven-failsafe-plugin</artifactId>
             </plugin>
+            <!-- build docker image on each build as language variants will need the latest to do their work -->
+            <plugin>
+                <groupId>com.spotify</groupId>
+                <artifactId>dockerfile-maven-plugin</artifactId>
+                <executions>
+                    <execution>
+                        <id>docker-image-build</id>
+                        <goals>
+                            <goal>build</goal>
+                        </goals>
+                        <configuration>
+                            <tag>${project.version}</tag>
+                            <buildArgs>
+                                <GREMLIN_SERVER_DIR>target/apache-tinkerpop-${project.artifactId}-${project.version}-standalone</GREMLIN_SERVER_DIR>
+                            </buildArgs>
+                        </configuration>
+                    </execution>
+                </executions>
+                <configuration>
+                    <repository>tinkerpop/gremlin-server</repository>
+                </configuration>
+            </plugin>
         </plugins>
     </build>
+
     <profiles>
         <profile>
             <id>use-epoll</id>


[tinkerpop] 02/03: f

Posted by sp...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

spmallette pushed a commit to branch ci-fix
in repository https://gitbox.apache.org/repos/asf/tinkerpop.git

commit 5eabb8efb600e87f8532ee33c1d8f10fc2c42529
Author: Stephen Mallette <st...@amazon.com>
AuthorDate: Wed Jul 13 06:41:24 2022 -0400

    f
---
 .github/workflows/build-test.yml | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

diff --git a/.github/workflows/build-test.yml b/.github/workflows/build-test.yml
index 807eee1c03..3f1e6e9c14 100644
--- a/.github/workflows/build-test.yml
+++ b/.github/workflows/build-test.yml
@@ -236,8 +236,7 @@ jobs:
       - name: Generate Gremlin Server Base Image
         working-directory: .
         run: |
-          mvn clean install -DskipTests -DskipIntegrationTests=true -am
-          mvn install -Pdocker-images -pl :gremlin-server -DskipTests
+          mvn clean install -DskipTests -DskipIntegrationTests=true -Dci
       - name: Build with Maven
         working-directory: .
         run: |


[tinkerpop] 03/03: f

Posted by sp...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

spmallette pushed a commit to branch ci-fix
in repository https://gitbox.apache.org/repos/asf/tinkerpop.git

commit 26852b7feeb5e6c7b84eafa8a9b3cf8233692fdf
Author: Stephen Mallette <st...@amazon.com>
AuthorDate: Wed Jul 13 06:42:06 2022 -0400

    f
---
 .github/workflows/build-test.yml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/.github/workflows/build-test.yml b/.github/workflows/build-test.yml
index 3f1e6e9c14..892bdf3361 100644
--- a/.github/workflows/build-test.yml
+++ b/.github/workflows/build-test.yml
@@ -236,7 +236,7 @@ jobs:
       - name: Generate Gremlin Server Base Image
         working-directory: .
         run: |
-          mvn clean install -DskipTests -DskipIntegrationTests=true -Dci
+          mvn clean install -pl gremlin-server -DskipTests -DskipIntegrationTests=true -Dci -am
       - name: Build with Maven
         working-directory: .
         run: |