From bc93935ef0294e559bd0b46809a33c717070a8ce Mon Sep 17 00:00:00 2001 From: George Melikov Date: Wed, 21 Jul 2021 01:21:00 +0300 Subject: [PATCH] CI: generate ABI files if changed So commit author can just download them as artifacts and commit. Reviewed-by: Ryan Moeller Reviewed-by: John Kennedy Signed-off-by: George Melikov Closes #12379 --- .github/workflows/checkstyle.yaml | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/.github/workflows/checkstyle.yaml b/.github/workflows/checkstyle.yaml index 8dcd5047a7..33276d2690 100644 --- a/.github/workflows/checkstyle.yaml +++ b/.github/workflows/checkstyle.yaml @@ -32,5 +32,19 @@ jobs: run: | make lint - name: CheckABI + id: CheckABI run: | make checkabi + - name: StoreABI + if: failure() && steps.CheckABI.outcome == 'failure' + run: | + make storeabi + - name: Prepare artifacts + if: failure() && steps.CheckABI.outcome == 'failure' + run: | + find -name *.abi | tar -cf abi_files.tar -T - + - uses: actions/upload-artifact@v2 + if: failure() && steps.CheckABI.outcome == 'failure' + with: + name: New ABI files (use only if you're sure about interface changes) + path: abi_files.tar