Skip to content

Commit

Permalink
Merge pull request #1180 from 64/consolidate-ad-hoc-ci
Browse files Browse the repository at this point in the history
ci: consolidate misc workflows
  • Loading branch information
qookei authored Nov 8, 2024
2 parents 6a9f25e + 920d49a commit 8c61472
Show file tree
Hide file tree
Showing 2 changed files with 35 additions and 23 deletions.
23 changes: 0 additions & 23 deletions .github/workflows/fixups.yml

This file was deleted.

35 changes: 35 additions & 0 deletions .github/workflows/misc.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
name: Miscellaneous checks

on: [pull_request, merge_group]

jobs:
misc:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0

- name: 'Check for fixup commits'
run: |
set -e -o pipefail
git rev-list 'HEAD^..HEAD' \
| while read -r COMMIT; do
printf 'pondering commit %s\n' "$COMMIT"
git show -s "$COMMIT"
if git show -s --format='%s' "$COMMIT" | grep -q '^fixup! '; then
exit 1
fi
done
- name: 'Detect missing mlibc-config.h'
run: chmod +x ./scripts/check-options-header-include.sh && ./scripts/check-options-header-include.sh

- name: 'Detect ifdef/defined misuse'
run: |
printf '(^#ifn?def[[:space:]]+|defined[[:space:]]*[(][[:space:]]*)((%s)([^_A-Za-z0-9]|$))\0' \
"$(printf '%s' "$(awk '/#mesondefine/ { print $2 }' mlibc-config.h.in)" | tr '\n' '|')" \
| { ! xargs -0I '{}' grep --color=always -PR '{}' \
|| { echo 'found misuse'; exit 1; }; }

0 comments on commit 8c61472

Please sign in to comment.