mirror of
https://github.com/php/php-src.git
synced 2026-03-24 00:02:20 +01:00
In the same time, let's not verify implementation aliases since they may now legitimately differ from their aliased function/method counterparts (think about the ext/dom refactoring where e.g. many return type declarations have changed). Additionally, unnecessary `@no-verify` tags are cleaned up.
15 lines
457 B
YAML
15 lines
457 B
YAML
name: Verify generated files are up to date
|
|
runs:
|
|
using: composite
|
|
steps:
|
|
- shell: bash
|
|
run: |
|
|
set -ex
|
|
[[ "$OSTYPE" == "darwin"* ]] && export PATH="$(brew --prefix)/opt/bison/bin:$PATH"
|
|
scripts/dev/credits
|
|
scripts/dev/genfiles
|
|
Zend/zend_vm_gen.php
|
|
ext/tokenizer/tokenizer_data_gen.php
|
|
build/gen_stub.php -f --generate-optimizer-info --verify
|
|
git add . -N && git diff --exit-code
|