Skip to content

Commit

Permalink
doc: Add ABI checking with check-abi.sh to the Release Process
Browse files Browse the repository at this point in the history
  • Loading branch information
hebasto committed Dec 20, 2023
1 parent dc02c7a commit ba84e47
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions doc/release-process.md
Expand Up @@ -34,6 +34,11 @@ build=$(mktemp -d)
cmake -B $build -DCMAKE_INSTALL_PREFIX=$dir && cmake --build $build --target install && ls -RlAh $dir
gcc -o ecdsa examples/ecdsa.c -I $dir/include -L $dir/lib*/ -l secp256k1 -Wl,-rpath,"$dir/lib",-rpath,"$dir/lib64" && ./ecdsa
```
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.

```shell
tools/check-abi.sh
```

## Regular release

Expand Down

0 comments on commit ba84e47

Please sign in to comment.