diff options
author | Pablo Galindo Salgado <Pablogsal@gmail.com> | 2022-06-28 13:33:08 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-06-28 13:33:08 (GMT) |
commit | 648469299d9102bcc165baace67c6758e244eec1 (patch) | |
tree | 4ce9131e3e2f32eb8d6e763d892d9bbc85342048 /.github | |
parent | 3937dbfaf8280a0bdfa97e34f6bf8233d0772dc5 (diff) | |
download | cpython-648469299d9102bcc165baace67c6758e244eec1.zip cpython-648469299d9102bcc165baace67c6758e244eec1.tar.gz cpython-648469299d9102bcc165baace67c6758e244eec1.tar.bz2 |
[3.11] Backport ABI regeneration script (#94376)
Diffstat (limited to '.github')
-rw-r--r-- | .github/workflows/regen-abidump.sh | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/.github/workflows/regen-abidump.sh b/.github/workflows/regen-abidump.sh new file mode 100644 index 0000000..251bb38 --- /dev/null +++ b/.github/workflows/regen-abidump.sh @@ -0,0 +1,8 @@ +set -ex + +export DEBIAN_FRONTEND=noninteractive +./.github/workflows/posix-deps-apt.sh +apt-get install -yq abigail-tools python3 +export CFLAGS="-g3 -O0" +./configure --enable-shared && make +make regen-abidump |