Skip to content

Commit

Permalink
Update Stargate dep to 2.1.0-ALPHA-4 (#470)
Browse files Browse the repository at this point in the history
  • Loading branch information
tatu-at-datastax authored Jul 24, 2023
1 parent d75b8bb commit 961a3d2
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 5 deletions.
5 changes: 3 additions & 2 deletions .github/workflows/continuous-integration.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -106,8 +106,9 @@ jobs:
# run the int tests
- name: Integration Test
env:
COORD_IMAGE: 237073351946.dkr.ecr.us-east-1.amazonaws.com/stargateio/coordinator-dse-68
COORD_IMAGE: index.docker.io/stargateio/coordinator-dse-68
# ^^^ 24-Jul-2023, tatu: Temporary issues wrt ECR, need to use dockerhub instead
#COORD_IMAGE: 237073351946.dkr.ecr.us-east-1.amazonaws.com/stargateio/coordinator-dse-68
TEST_REGEX: '!VectorSearchIntegrationTest*,!JsonApiGrpcRetryPolicyBridgeTest'
run: |
./mvnw -B -ntp clean verify -DskipUnitTests -Dit.test=$TEST_REGEX -Dquarkus.container-image.build=true -Dquarkus.container-image.tag=${{ github.sha }} -Dstargate.int-test.coordinator.image=$COORD_IMAGE ${{ matrix.profile }}
4 changes: 2 additions & 2 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<parent>
<groupId>io.stargate</groupId>
<artifactId>sgv2-api-parent</artifactId>
<version>2.1.0-ALPHA-3</version>
<version>2.1.0-ALPHA-4</version>
</parent>
<artifactId>sgv2-jsonapi</artifactId>
<version>1.0.0-ALPHA-11-SNAPSHOT</version>
Expand All @@ -22,7 +22,7 @@
<!-- Integration test props -->
<!-- When updating please change defaults in the DseTestResource class -->
<stargate.int-test.cassandra.image>datastax/dse-server</stargate.int-test.cassandra.image>
<stargate.int-test.cassandra.image-tag>6.8.35</stargate.int-test.cassandra.image-tag>
<stargate.int-test.cassandra.image-tag>6.8.36</stargate.int-test.cassandra.image-tag>
<stargate.int-test.coordinator.image>stargateio/coordinator-dse-68</stargate.int-test.coordinator.image>
<stargate.int-test.coordinator.image-tag>v${stargate.version}</stargate.int-test.coordinator.image-tag>
<stargate.int-test.cluster.name>dse-${stargate.int-test.cassandra.image-tag}-cluster</stargate.int-test.cluster.name>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ public DseTestResource() {
super();

if (null == System.getProperty("testing.containers.cassandra-image")) {
System.setProperty("testing.containers.cassandra-image", "datastax/dse-server:6.8.35");
System.setProperty("testing.containers.cassandra-image", "datastax/dse-server:6.8.36");
}

if (null == System.getProperty("testing.containers.stargate-image")) {
Expand Down

0 comments on commit 961a3d2

Please sign in to comment.