Skip to content

Commit 74a4d97

Browse files
committed
doc: Add ABI checking with check-abi.sh to the Release Process
1 parent e7f830e commit 74a4d97

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

doc/release-process.md

+5
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,11 @@ build=$(mktemp -d)
3434
cmake -B $build -DCMAKE_INSTALL_PREFIX=$dir && cmake --build $build --target install && ls -RlAh $dir
3535
gcc -o ecdsa examples/ecdsa.c -I $dir/include -L $dir/lib*/ -l secp256k1 -Wl,-rpath,"$dir/lib",-rpath,"$dir/lib64" && ./ecdsa
3636
```
37+
4. Use the [`check-abi.sh`](/tools/check-abi.sh) tool to ensure there are no unexpected ABI incompatibilities and that the version number and release notes accurately reflect all potential ABI changes. To run this tool, the `abi-dumper` and `abi-compliance-checker` packages are required.
38+
39+
```shell
40+
tools/check-abi.sh
41+
```
3742

3843
## Regular release
3944

0 commit comments

Comments
 (0)