Skip to content

Commit

Permalink
Upload astyle formatting patch file as artifact during CI pipeline run (
Browse files Browse the repository at this point in the history
  • Loading branch information
hummeltech authored Nov 26, 2023
1 parent bc8126c commit 7e92e4c
Showing 1 changed file with 36 additions and 16 deletions.
52 changes: 36 additions & 16 deletions .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,20 @@ on:

jobs:
astyle:
env:
ASTYLE_CMD: >-
astyle
--break-blocks
--indent-switches
--indent=force-tab=8
--lineend=linux
--options=none
--pad-header
--pad-oper
--style=1tbs
--suffix=none
--unpad-paren
includes/*.h includes/*.hpp src/*.c src/*.cpp
name: Lint with `Artistic Style`
runs-on: ubuntu-latest
steps:
Expand All @@ -17,29 +31,35 @@ jobs:
with:
packages: astyle
- name: Check if any modifications were made by `astyle`
env:
ASTYLE_CMD: >-
astyle
--break-blocks
--indent-switches
--indent=force-tab=8
--lineend=linux
--options=none
--pad-header
--pad-oper
--style=1tbs
--suffix=none
--unpad-paren
includes/*.h includes/*.hpp src/*.c src/*.cpp
run: |
ASTYLE_OUTPUT=$(${ASTYLE_CMD} --dry-run)
if [ -n "$(echo "${ASTYLE_OUTPUT}" | grep -v "Unchanged")" ]; then
echo "The following files are in need of formatting:"
echo "${ASTYLE_OUTPUT}" | grep -v "Unchanged" | awk '{print "\t"$2}'
echo "${ASTYLE_OUTPUT}" | grep -v "Unchanged" | awk '{print "`"$2"`"}'
echo ""
echo "Run the following command before submitting a pull request:"
printf "\t${ASTYLE_CMD}\n" | tr -s ' '
echo '`'"${ASTYLE_CMD}"'`'
exit 1
fi
- name: Write `$ASTYLE_OUTPUT` to `$GITHUB_STEP_SUMMARY`
if: failure()
run: |
ASTYLE_OUTPUT=$(${ASTYLE_CMD} --dry-run)
echo "### The following files are in need of formatting:" >> ${GITHUB_STEP_SUMMARY}
echo "${ASTYLE_OUTPUT}" | grep -v "Unchanged" | awk '{print "- `"$2"`"}' >> ${GITHUB_STEP_SUMMARY}
echo "### Run the following command before submitting a pull request:" >> ${GITHUB_STEP_SUMMARY}
echo -e '```shell\n'"${ASTYLE_CMD}"'\n```' >> ${GITHUB_STEP_SUMMARY}
- name: Generate `ArtisticStyleFormattingFixes.patch` file
if: failure()
run: |
${ASTYLE_CMD}
git diff --patch > ArtisticStyleFormattingFixes.patch
- name: Upload `ArtisticStyleFormattingFixes.patch` file
if: failure()
uses: actions/upload-artifact@v3
with:
name: ArtisticStyleFormattingFixes.patch
path: ArtisticStyleFormattingFixes.patch

cmakelint:
name: Lint with `CMakeLint`
Expand Down

0 comments on commit 7e92e4c

Please sign in to comment.