Skip to content

Commit 6dba92d

Browse files
committed
xx
1 parent 4998d11 commit 6dba92d

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

.github/workflows/verify-bundled.yml

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,9 +25,13 @@ jobs:
2525
opcache_jit_ir:
2626
- 'ext/opcache/jit/ir/**'
2727
28-
- name: Download IR
28+
- name: Opcache JIT IR - Download
2929
if: (success() || failure()) && (steps.changes.outputs.opcache_jit_ir == 'true' || (github.event_name != 'push' && github.event_name != 'pull_request'))
3030
run: |
3131
rm -rf ext/opcache/jit/ir
3232
git clone --revision=5a81104e650ebd7ac24eb63d4dff67db723a5278 https://github.com/dstogov/ir.git ext/opcache/jit/ir
33-
git add . -N && git diff -a --exit-code ext/opcache/jit/ir
33+
cd ext/opcache/jit/ir
34+
rm -r .github/workflows bench examples tests tools
35+
- name: Opcache JIT IR - Verify files
36+
if: (success() || failure()) && (steps.changes.outputs.opcache_jit_ir == 'true' || (github.event_name != 'push' && github.event_name != 'pull_request'))
37+
run: git add . -N && git diff -a --exit-code ext/opcache/jit/ir

0 commit comments

Comments
 (0)