Skip to content

Commit 21178c5

Browse files
committed
update versions
1 parent bfe6345 commit 21178c5

File tree

3 files changed

+7
-7
lines changed

3 files changed

+7
-7
lines changed

.github/workflows/maven-ci-build.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -18,11 +18,11 @@ jobs:
1818

1919
- name: Preparing build
2020
run: |
21-
wget https://dev.mysql.com/get/Downloads/MySQL-Cluster-8.0.22/mysql-cluster-community-java_8.0.22-1ubuntu20.10_amd64.deb
22-
sudo dpkg -i mysql-cluster-community-java_8.0.22-1ubuntu20.10_amd64.deb
23-
mvn install:install-file -DgroupId=com.mysql.ndb -DartifactId=clusterj -Dversion=8.0.22 -Dpackaging=jar -Dfile=/usr/share/mysql-8.0/java/clusterj-8.0.22.jar -DgeneratePom=true
24-
wget https://dev.mysql.com/get/Downloads/MySQL-Cluster-8.0.22/ndbclient_8.0.22-1ubuntu20.10_amd64.deb
25-
sudo dpkg -i ndbclient_8.0.22-1ubuntu20.10_amd64.deb
21+
wget https://dev.mysql.com/get/Downloads/MySQL-Cluster-7.6/mysql-cluster-community-java_7.6.9-1ubuntu16.04_amd64.deb
22+
sudo dpkg -i mysql-cluster-community-java_7.6.9-1ubuntu16.04_amd64.deb
23+
mvn install:install-file -DgroupId=com.mysql.ndb -DartifactId=clusterj -Dversion=7.6.9 -Dpackaging=jar -Dfile=/usr/share/mysql/java/clusterj-7.6.9.jar -DgeneratePom=true
24+
wget https://dev.mysql.com/get/Downloads/MySQL-Cluster-7.6/ndbclient_7.6.9-1ubuntu16.04_amd64.deb
25+
sudo dpkg -i ndbclient_7.6.9-1ubuntu16.04_amd64.deb
2626
sudo ln -s /usr/lib/x86_64-linux-gnu/libndbclient.so.6.1.0 /usr/lib/x86_64-linux-gnu/libndbclient.so
2727
2828
- name: Build with Maven

clusterj-app/src/test/java/ru/example/clusterj/junit5/MySQLClusterTcExtension.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ private static Network.Ipam getIpam() {
3333
.createNetworkCmdModifier(createNetworkCmd -> createNetworkCmd.withIpam(getIpam()))
3434
.build();
3535

36-
private static GenericContainer ndbMgmd = new GenericContainer<>("mysql/mysql-cluster:8.0.22")
36+
private static GenericContainer ndbMgmd = new GenericContainer<>("mysql/mysql-cluster:7.6.16")
3737
.withNetwork(network)
3838
.withClasspathResourceMapping("mysql-cluster.cnf",
3939
"/etc/mysql-cluster.cnf",

clusterj-spring-boot-starter/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
<dependency>
1616
<groupId>com.mysql.ndb</groupId>
1717
<artifactId>clusterj</artifactId>
18-
<version>8.0.22</version>
18+
<version>7.6.9</version>
1919
</dependency>
2020
<dependency>
2121
<groupId>org.springframework.boot</groupId>

0 commit comments

Comments
 (0)