server-sdk-java icon indicating copy to clipboard operation
server-sdk-java copied to clipboard

optimize ci, add integration test with local fp-server

Open hezean opened this issue 2 years ago • 0 comments

ref impl:

            <plugin>
                <groupId>io.fabric8</groupId>
                <artifactId>docker-maven-plugin</artifactId>
                <version>0.40.2</version>
                <extensions>true</extensions>
                <executions>
                    <execution>
                        <id>pre-integration-test</id>
                        <goals>
                            <goal>build</goal>
                            <goal>start</goal>
                        </goals>
                        <configuration>
                            <images>
                                <image>
                                    <name>liquid-media-minio</name>
                                    <external>
                                        <type>compose</type>
                                        <basedir>src/test/resources</basedir>
                                        <composeFile>minio-compose.yml</composeFile>
                                    </external>
                                    <run>
                                        <wait>
                                            <log>.*MinIO Object Storage Server.*</log>
                                            <time>60000</time>
                                        </wait>
                                    </run>
                                </image>
                            </images>
                        </configuration>
                    </execution>
                    <execution>
                        <id>post-integration-test</id>
                        <goals>
                            <goal>stop</goal>
                        </goals>
                        <configuration>
                            <images>
                                <image>
                                    <name>liquid-media-minio</name>
                                    <watch>
                                        <interval>2000</interval>
                                    </watch>
                                </image>
                            </images>
                        </configuration>
                    </execution>
                </executions>
            </plugin>

hezean avatar Dec 28 '22 15:12 hezean