mirror of
https://github.com/FreeRDP/FreeRDP.git
synced 2025-06-03 00:00:20 +00:00
[ci,abi] add suppressions
This commit is contained in:
parent
721c1b9fcd
commit
7c320056b3
5
.github/workflows/abi-checker.yml
vendored
5
.github/workflows/abi-checker.yml
vendored
@ -47,7 +47,7 @@ jobs:
|
|||||||
xsltproc \
|
xsltproc \
|
||||||
libxcb-cursor-dev \
|
libxcb-cursor-dev \
|
||||||
libxcursor-dev \
|
libxcursor-dev \
|
||||||
libcairo2-dev \
|
libcairo2-dev \
|
||||||
libfaad-dev \
|
libfaad-dev \
|
||||||
libjpeg-dev \
|
libjpeg-dev \
|
||||||
libgsm1-dev \
|
libgsm1-dev \
|
||||||
@ -85,6 +85,7 @@ jobs:
|
|||||||
run: |
|
run: |
|
||||||
mkdir -p checker
|
mkdir -p checker
|
||||||
cp ci/cmake-preloads/config-abi.txt checker/
|
cp ci/cmake-preloads/config-abi.txt checker/
|
||||||
|
cp scripts/abi-suppr.txt checker/
|
||||||
curl https://gist.githubusercontent.com/akallabeth/aa35caed0d39241fa17c3dc8a0539ea3/raw/ef12f8c720ac6be51aa1878710e2502b1b39cf4c/check-abi -o checker/check-abi
|
curl https://gist.githubusercontent.com/akallabeth/aa35caed0d39241fa17c3dc8a0539ea3/raw/ef12f8c720ac6be51aa1878710e2502b1b39cf4c/check-abi -o checker/check-abi
|
||||||
chmod +x checker/check-abi
|
chmod +x checker/check-abi
|
||||||
echo "GITHUB_BASE_REF=$GITHUB_BASE_REF"
|
echo "GITHUB_BASE_REF=$GITHUB_BASE_REF"
|
||||||
@ -98,4 +99,4 @@ jobs:
|
|||||||
BASE_REF: ${{ github.event_name == 'pull_request' && github.event.pull_request.base.sha || github.event_name == 'pull_request_target' && github.event.pull_request.base.sha || inputs.API_BASE_REF }}
|
BASE_REF: ${{ github.event_name == 'pull_request' && github.event.pull_request.base.sha || github.event_name == 'pull_request_target' && github.event.pull_request.base.sha || inputs.API_BASE_REF }}
|
||||||
run: |
|
run: |
|
||||||
echo "BASE_REF=$BASE_REF"
|
echo "BASE_REF=$BASE_REF"
|
||||||
./checker/check-abi --parameters="-Cchecker/config-abi.txt" $BASE_REF $(git rev-parse HEAD)
|
./checker/check-abi -s checker/abi-suppr.txt --parameters="-Cchecker/config-abi.txt" $BASE_REF $(git rev-parse HEAD)
|
||||||
|
9
scripts/abi-suppr.txt
Normal file
9
scripts/abi-suppr.txt
Normal file
@ -0,0 +1,9 @@
|
|||||||
|
# settings are opaque, ignore all changes
|
||||||
|
[suppress_type]
|
||||||
|
type_kind = struct
|
||||||
|
name = rdp_settings
|
||||||
|
|
||||||
|
# allow insertions at end of structs
|
||||||
|
[suppress_type]
|
||||||
|
type_kind = struct
|
||||||
|
has_data_members_inserted_at = end
|
Loading…
Reference in New Issue
Block a user