DEV Community

Ahmed Mohamed
Ahmed Mohamed

Posted on

Vote Guide for AGE Community

Introduction

These steps will help you to review the required checks to vote on the upcomming releases

we will apply that on AGE 1.3.0 and PG 11 release
release files

1- Check Hash

using the following command

sha512sum apache-age-1.3.0-src.tar.gz
Enter fullscreen mode Exit fullscreen mode

then compare the result with the value on apache-age-1.3.0-src.tar.gz.sha512

2- Check Signature

download the keys from this link and verify using the following command

gpg --import KEYS
gpg --verify apache-age-1.3.0-src.tar.gz.asc apache-age-1.3.0-src.tar.gz
Enter fullscreen mode Exit fullscreen mode

3- Check Binary Files

using the following command

find . -type f -executable
Enter fullscreen mode Exit fullscreen mode

4- check Regression Tests

using the following command

# in source code folder
make installcheck PG_CONFIG=pg_config
Enter fullscreen mode Exit fullscreen mode

then check the following manually

  • Tags and links.
  • Validity of release notes.

Top comments (0)