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


##########
RELEASE.md:
##########
@@ -32,6 +33,9 @@ For all the commands going forward:
 * Replace `{dist.dev}` with the local path to the development distribution 
directory.
 * Replace `{dist.release}` with the local path to the release distribution 
directory.
 
+4. Collect all release important unresolved issues and label them with smth. 
like: `release-{version}-blocker`, inform community that all further critical 
release issues need to be labeled appropriate. It is not necessary, but it will 
allow not to miss important issues.

Review Comment:
   thanks, done



##########
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:
   done



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