maksaska commented on code in PR #13108:
URL: https://github.com/apache/ignite/pull/13108#discussion_r3280166646


##########
modules/compatibility/src/test/java/org/apache/ignite/compatibility/upgrade/DistributionProvider.java:
##########
@@ -0,0 +1,208 @@
+/*
+ * Licensed to the Apache Software Foundation (ASF) under one or more
+ * contributor license agreements.  See the NOTICE file distributed with
+ * this work for additional information regarding copyright ownership.
+ * The ASF licenses this file to You under the Apache License, Version 2.0
+ * (the "License"); you may not use this file except in compliance with
+ * the License.  You may obtain a copy of the License at
+ *
+ *      http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
+package org.apache.ignite.compatibility.upgrade;
+
+import java.io.File;
+import java.io.FileInputStream;
+import java.io.FileOutputStream;
+import java.io.IOException;
+import java.io.InputStream;
+import java.io.OutputStream;
+import java.net.HttpURLConnection;
+import java.net.URL;
+import java.nio.file.Paths;
+import java.util.zip.ZipEntry;
+import java.util.zip.ZipInputStream;
+import org.apache.ignite.IgniteSystemProperties;
+import org.apache.ignite.SystemProperty;
+import org.apache.ignite.internal.util.typedef.X;
+
+/** */
+public class DistributionProvider {
+    /** Base Ignite distribution location */
+    @SystemProperty(value = "Base Ignite distribution location", type = 
String.class)
+    private static final String BASE_DIST = "ignite.upgrade.base.dist";
+
+    /** Target Ignite distribution location */
+    @SystemProperty(value = "Target Ignite distribution location", type = 
String.class)
+    private static final String TARGET_DIST = "ignite.upgrade.target.dist";
+
+    /** Cached Ignite released distributions location */
+    @SystemProperty(value = "Cached Ignite released distributions location", 
type = String.class)
+    private static final String RELEASES_DIR = "ignite.upgrade.releases.dir";
+
+    /** */
+    private static final String DEFAULT_TARGET_REL_PATH = 
"target/release-package-apache-ignite";
+
+    /** */
+    private static final String LATEST_VERSION = "2.18.0";

Review Comment:
   I don't think there is. We will have to track the latest RU compatible 
release like we do for the rest compatibility tests.



-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]

Reply via email to