Skip to content

Commit 432ee42

Browse files
committed
fix test
1 parent 5e4e0c4 commit 432ee42

File tree

6 files changed

+9
-8
lines changed

6 files changed

+9
-8
lines changed

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717

1818
FROM flink
1919

20-
ARG FLINK_CDC_VERSION=3.3-SNAPSHOT
20+
ARG FLINK_CDC_VERSION=3.4-SNAPSHOT
2121
ARG PIPELINE_DEFINITION_FILE
2222

2323
RUN mkdir -p /opt/flink-cdc

tools/mig-test/datastream/compile_jobs.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
# See the License for the specific language governing permissions and
1717
# limitations under the License.
1818

19-
JOB_VERSIONS = %w[3.2.0 3.2.1 3.3-SNAPSHOT]
19+
JOB_VERSIONS = %w[3.2.0 3.2.1 3.3.0 3.4-SNAPSHOT]
2020

2121
JOB_VERSIONS.each do |version|
2222
puts "Compiling DataStream job for CDC #{version}"

tools/mig-test/datastream/datastream-3.3-SNAPSHOT/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,13 +22,13 @@ limitations under the License.
2222

2323
<groupId>org.apache.flink</groupId>
2424
<artifactId>datastream-job</artifactId>
25-
<version>3.3-SNAPSHOT</version>
25+
<version>3.4-SNAPSHOT</version>
2626
<packaging>jar</packaging>
2727

2828
<properties>
2929
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
3030
<flink.version>1.19.1</flink.version>
31-
<flink.cdc.version>3.3-SNAPSHOT</flink.cdc.version>
31+
<flink.cdc.version>3.4-SNAPSHOT</flink.cdc.version>
3232
<debezium.version>1.9.7.Final</debezium.version>
3333
<scala.binary.version>2.12</scala.binary.version>
3434
<slf4j.version>2.0.13</slf4j.version>

tools/mig-test/datastream/run_migration_test.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,7 @@ def test_migration(from_version, to_version)
9393
end
9494
end
9595

96-
version_list = %w[3.2.0 3.2.1 3.3-SNAPSHOT]
96+
version_list = %w[3.2.0 3.2.1 3.3.0 3.4-SNAPSHOT]
9797
version_result = Hash.new('❓')
9898
@failures = []
9999

tools/mig-test/prepare_libs.rb

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,9 +38,10 @@ def gen_version(tag)
3838
RELEASED_VERSIONS = {
3939
'3.2.0': gen_version('3.2.0'),
4040
'3.2.1': gen_version('3.2.1'),
41+
'3.3.0': gen_version('3.3.0'),
4142
}.freeze
4243

43-
HEAD_VERSION = '3.3-SNAPSHOT'
44+
HEAD_VERSION = '3.4-SNAPSHOT'
4445

4546
def download_or_get(link)
4647
`mkdir -p cache`

tools/mig-test/run_migration_test.rb

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -118,8 +118,8 @@ def test_migration(from_version, to_version)
118118
end
119119

120120
version_list = case ARGV[0]
121-
when '1.19.1' then %w[3.2.0 3.2.1 3.3-SNAPSHOT]
122-
when '1.20.0' then %w[3.2.1 3.3-SNAPSHOT]
121+
when '1.19.1' then %w[3.2.0 3.2.1 3.3.0 3.4-SNAPSHOT]
122+
when '1.20.0' then %w[3.2.1 3.3.0 3.4-SNAPSHOT]
123123
else []
124124
end
125125

0 commit comments

Comments
 (0)