diff options
author | Ian Moffett <ian@osmora.org> | 2024-03-07 17:28:52 -0500 |
---|---|---|
committer | Ian Moffett <ian@osmora.org> | 2024-03-07 18:24:51 -0500 |
commit | f5e48e94a2f4d4bbd6e5628c7f2afafc6dbcc459 (patch) | |
tree | 93b156621dc0303816b37f60ba88051b702d92f6 /lib/mlibc/.github/workflows/detect-bad-ifs.yml | |
parent | bd5969fc876a10b18613302db7087ef3c40f18e1 (diff) |
build: Build mlibc + add distclean target
Signed-off-by: Ian Moffett <ian@osmora.org>
Diffstat (limited to 'lib/mlibc/.github/workflows/detect-bad-ifs.yml')
-rw-r--r-- | lib/mlibc/.github/workflows/detect-bad-ifs.yml | 17 |
1 files changed, 0 insertions, 17 deletions
diff --git a/lib/mlibc/.github/workflows/detect-bad-ifs.yml b/lib/mlibc/.github/workflows/detect-bad-ifs.yml deleted file mode 100644 index c738d29..0000000 --- a/lib/mlibc/.github/workflows/detect-bad-ifs.yml +++ /dev/null @@ -1,17 +0,0 @@ -name: Detect ifdef/defined (mis)use - -on: [push, pull_request] - -jobs: - find-misuse: - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v3 - - 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; }; } - - -# vim: set sw=2 : |