File tree Expand file tree Collapse file tree 2 files changed +6
-2
lines changed
Expand file tree Collapse file tree 2 files changed +6
-2
lines changed Original file line number Diff line number Diff line change @@ -51,7 +51,7 @@ ARG APACHE_MIRROR="https://apache-mirror.rbc.ru/pub/apache/"
5151ARG APACHE_ARCHIVE="https://archive.apache.org/dist/"
5252
5353# Install binary test dependencies.
54- RUN for v in "2.7.6" "2.16 .0" ; \
54+ RUN for v in "2.7.6" "2.17 .0" ; \
5555 do cd /opt; \
5656 curl -O $APACHE_ARCHIVE/ignite/$v/apache-ignite-$v-bin.zip;\
5757 unzip apache-ignite-$v-bin.zip && mv /opt/apache-ignite-$v-bin /opt/ignite-$v;\
Original file line number Diff line number Diff line change @@ -116,7 +116,11 @@ def __repr__(self):
116116V_2_16_0 = IgniteVersion ("2.16.0" )
117117LATEST_2_16 = V_2_16_0
118118
119+ # 2.17.x versions
120+ V_2_17_0 = IgniteVersion ("2.17.0" )
121+ LATEST_2_17 = V_2_17_0
122+
119123# if you updated the LATEST version
120124# please check DEV version in 'tests/ignitetest/__init__.py'
121- LATEST = LATEST_2_16
125+ LATEST = LATEST_2_17
122126OLDEST = V_2_7_6
You can’t perform that action at this time.
0 commit comments