CI: use fresh libabigail via docker image
Reviewed-by: John Kennedy <john.kennedy@delphix.com> Reviewed-by: Brian Behlendorf <behlendorf1@llnl.gov> Signed-off-by: George Melikov <mail@gmelikov.ru> Closes #12529
This commit is contained in:
parent
f3c85e3ebd
commit
866ac70904
|
@ -24,6 +24,7 @@ jobs:
|
||||||
run: |
|
run: |
|
||||||
sh ./autogen.sh
|
sh ./autogen.sh
|
||||||
./configure
|
./configure
|
||||||
|
make -j$(nproc)
|
||||||
- name: Checkstyle
|
- name: Checkstyle
|
||||||
run: |
|
run: |
|
||||||
make checkstyle
|
make checkstyle
|
||||||
|
@ -33,12 +34,11 @@ jobs:
|
||||||
- name: CheckABI
|
- name: CheckABI
|
||||||
id: CheckABI
|
id: CheckABI
|
||||||
run: |
|
run: |
|
||||||
make -j$(nproc)
|
sudo docker run -v $(pwd):/source ghcr.io/openzfs/libabigail make checkabi
|
||||||
make checkabi
|
|
||||||
- name: StoreABI
|
- name: StoreABI
|
||||||
if: failure() && steps.CheckABI.outcome == 'failure'
|
if: failure() && steps.CheckABI.outcome == 'failure'
|
||||||
run: |
|
run: |
|
||||||
make storeabi
|
sudo docker run -v $(pwd):/source ghcr.io/openzfs/libabigail make storeabi
|
||||||
- name: Prepare artifacts
|
- name: Prepare artifacts
|
||||||
if: failure() && steps.CheckABI.outcome == 'failure'
|
if: failure() && steps.CheckABI.outcome == 'failure'
|
||||||
run: |
|
run: |
|
||||||
|
|
Loading…
Reference in New Issue