Skip to content

Commit

Permalink
Check for C99 features which may not be supported
Browse files Browse the repository at this point in the history
Continue on error because it is known that this fails right now.
Once fixed, we'll turn it off.
  • Loading branch information
nobu committed Dec 25, 2023
1 parent 8cd9bdd commit f730a5a
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions .github/workflows/check_misc.yml
Expand Up @@ -52,6 +52,14 @@ jobs:
exit $fail
working-directory: include

# This should be able to be removed once old platforms are dropped.
- id: c99-check
name: Check for C99 features which may not be supported
run: |
# VC2013: z modifier for size_t is not supported.
grep -r -n --include='*.[chyS]' '%[0-9]*z[idu]' -- . && exit 1 || :
continue-on-error: true # Just show in the annotations

- id: gems
run: true
if: ${{ github.ref == 'refs/heads/master' }}
Expand Down

0 comments on commit f730a5a

Please sign in to comment.