ygerzhedovich commented on code in PR #6882:
URL: https://github.com/apache/ignite-3/pull/6882#discussion_r2493931369


##########
RELEASE.md:
##########
@@ -79,21 +83,35 @@ For all the commands going forward:
 12. Create Docker Images:
     ```
     ./gradlew :packaging:docker -Ptarget_platform=linux/amd64 
-Pplatforms.enable
-    docker save apacheignite/ignite:VERSION -o 
packaging/build/release/ignite:VERSION-amd64.tar
+    docker save apacheignite/ignite:{version} -o 
packaging/build/release/ignite:{version}-amd64.tar
     ./gradlew :packaging:docker -Ptarget_platform=linux/arm64 
-Pplatforms.enable
-    docker save apacheignite/ignite:VERSION -o 
packaging/build/release/ignite:VERSION-arm64.tar
+    docker save apacheignite/ignite:{version} -o 
packaging/build/release/ignite:{version}-arm64.tar
+    ```
+    Probably you will need some steps from 
[multi-platform](https://docs.docker.com/build/building/multi-platform) doc.
+    Minimal steps during first release:
+    ```
+    docker buildx build --load -t linux/arm64 --builder=container .
+    docker run --privileged --rm tonistiigi/binfmt --install all
+    ```
+13. ODBC: run appropriate TC suites:
+    ```
+    
https://ci.ignite.apache.org/buildConfiguration/ApacheIgnite3xGradle_Release_Build_OdbcRpmPackage
+    
https://ci.ignite.apache.org/buildConfiguration/ApacheIgnite3xGradle_Release_Build_7odbcDebPackage
     ```
-13. Copy all packages along with checksums and signatures to the development 
distribution directory:
+    download artifacts, remove zip and sign all files with gpg key. After - 
copy into `{dist.dev}/{version}-rc{rc}`
+14. Copy all packages along with checksums and signatures to the development 
distribution directory:
    ```
    cp packaging/build/release/* {dist.dev}/{version}-rc{rc}
    ```
-14. Commit ZIP and DEB\RPM packages:
+15. Check for ignite.version.full (TODO 
[IGNITE-IGNITE-26834](https://issues.apache.org/jira/browse/IGNITE-26834)), 
remove this step if it will be done automatically through gradle task.
+16. Commit ZIP and DEB\RPM packages:
    ```
    cd {dist.dev}
    svn add {version}-rc{rc}
    svn commit -m “Apache Ignite {version} RC{rc}”
    ``` 
-15. Put the release on a vote on the developers mailing list.
+17. Put the release on a vote on the developers mailing list.
+18. If vote is passed - send appropriate message for dev-list, otherwise apply 
appropriate changes, don\`t forget to move `git tag` if there are code related 
changes.

Review Comment:
   Should we put the git command here?



-- 
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