From 62250fbbb6578050d168aedd13ebeecd2c776706 Mon Sep 17 00:00:00 2001 From: Brian Behlendorf Date: Tue, 1 Oct 2024 14:35:07 -0700 Subject: [PATCH] WIP force ABI generation for update Force updated ABI files to be generated so they can be compared against what's commit and updated if needed. ZFS-CI-Type: quick Signed-off-by: Brian Behlendorf --- .github/workflows/checkstyle.yaml | 3 --- 1 file changed, 3 deletions(-) diff --git a/.github/workflows/checkstyle.yaml b/.github/workflows/checkstyle.yaml index b34ca1302873..703916ec5ba4 100644 --- a/.github/workflows/checkstyle.yaml +++ b/.github/workflows/checkstyle.yaml @@ -50,15 +50,12 @@ jobs: run: | docker run -v $PWD:/source ghcr.io/openzfs/libabigail make -j$(nproc) --no-print-directory --silent checkabi - name: StoreABI - if: failure() && steps.CheckABI.outcome == 'failure' run: | docker run -v $PWD:/source ghcr.io/openzfs/libabigail make -j$(nproc) --no-print-directory --silent storeabi - name: Prepare artifacts - if: failure() && steps.CheckABI.outcome == 'failure' run: | find -name *.abi | tar -cf abi_files.tar -T - - uses: actions/upload-artifact@v4 - if: failure() && steps.CheckABI.outcome == 'failure' with: name: New ABI files (use only if you're sure about interface changes) path: abi_files.tar