forked from pistacheio/pistache
-
Notifications
You must be signed in to change notification settings - Fork 0
66 lines (54 loc) · 1.59 KB
/
abidiff.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
# SPDX-FileCopyrightText: 2022 Andrea Pappacoda <[email protected]>
#
# SPDX-License-Identifier: Apache-2.0
name: abidiff
on:
push:
paths-ignore: pistache.io/**
pull_request:
paths-ignore: pistache.io/**
# This ensures that jobs get canceled when force-pushing
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
# The default Debian shell (dash) is faster than bash at running scripts,
# and using bash when it is not needed doesn't make sense.
defaults:
run:
shell: sh
jobs:
abi:
runs-on: ubuntu-latest
container:
image: debian:testing
steps:
- name: Install dependencies
run: |
apt -y update
apt -y install abigail-tools g++ meson pkg-config cmake libhowardhinnant-date-dev libssl-dev rapidjson-dev git ca-certificates --no-install-recommends
- uses: actions/checkout@v2
with:
path: current
- uses: actions/checkout@v2
with:
path: previous
fetch-depth: 2
- name: Checkout previous
working-directory: previous
run: git checkout HEAD^
- name: Build current
working-directory: current
run: |
meson setup build --buildtype=debug
meson compile -C build
- name: Build previous
working-directory: previous
run: |
meson setup build --buildtype=debug
meson compile -C build
- name: Run abidiff
run: abidiff
--headers-dir1 previous/include/pistache
--headers-dir2 current/include/pistache
previous/build/src/libpistache.so
current/build/src/libpistache.so