File tree Expand file tree Collapse file tree 2 files changed +28
-24
lines changed
Expand file tree Collapse file tree 2 files changed +28
-24
lines changed Original file line number Diff line number Diff line change @@ -2,9 +2,6 @@ name: Build Test
22
33on : [push, pull_request]
44
5- env :
6- LAST_ABI_BREAK : 0f33069752fe06f6daf3d977cd09665b059494d8
7-
85jobs :
96 build-test :
107 name : Build & Test
4037 - name : Build & Test
4138 run : podman run -t -v `pwd`:/build packagekit-${{ matrix.distro }}
4239 ./tests/ci/build-and-test.sh -Dpackaging_backend=${{ matrix.backend }}
43-
44- check-abi :
45- name : Check ABI
46- runs-on : ubuntu-latest
47-
48- steps :
49- - name : Get this version
50- uses : actions/checkout@v4
51-
52- - name : Get version from last ABI break
53- uses : actions/checkout@v4
54- with :
55- ref : ${{ env.LAST_ABI_BREAK }}
56- path : original-version
57-
58- - name : Create Build Environment
59- run : podman build -t packagekit-debian -f tests/ci/Dockerfile-debian
60-
61- - name : Build & Test
62- run : podman run -t -v `pwd`:/build packagekit-debian
63- ./tests/ci/check-abi.sh -Dpackaging_backend=apt
Original file line number Diff line number Diff line change 1+ name : Check ABI
2+
3+ on : [push, pull_request]
4+
5+ env :
6+ LAST_ABI_BREAK : 0f33069752fe06f6daf3d977cd09665b059494d8
7+
8+ jobs :
9+ check-abi :
10+ name : Check ABI
11+ runs-on : ubuntu-latest
12+
13+ steps :
14+ - name : Get this version
15+ uses : actions/checkout@v4
16+
17+ - name : Get version from last ABI break
18+ uses : actions/checkout@v4
19+ with :
20+ ref : ${{ env.LAST_ABI_BREAK }}
21+ path : original-version
22+
23+ - name : Create Build Environment
24+ run : podman build -t packagekit-debian -f tests/ci/Dockerfile-debian
25+
26+ - name : Build & Test
27+ run : podman run -t -v `pwd`:/build packagekit-debian
28+ ./tests/ci/check-abi.sh -Dpackaging_backend=apt
You can’t perform that action at this time.
0 commit comments