diff options
Diffstat (limited to '.github')
-rw-r--r-- | .github/workflows/checkstyle.yaml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/.github/workflows/checkstyle.yaml b/.github/workflows/checkstyle.yaml index 33276d269..69c8d1aea 100644 --- a/.github/workflows/checkstyle.yaml +++ b/.github/workflows/checkstyle.yaml @@ -34,11 +34,11 @@ jobs: - name: CheckABI id: CheckABI run: | - make checkabi + sudo docker run -v $(pwd):/source ghcr.io/openzfs/libabigail make checkabi - name: StoreABI if: failure() && steps.CheckABI.outcome == 'failure' run: | - make storeabi + sudo docker run -v $(pwd):/source ghcr.io/openzfs/libabigail make storeabi - name: Prepare artifacts if: failure() && steps.CheckABI.outcome == 'failure' run: | |