We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6da93a8 commit add86c7Copy full SHA for add86c7
.github/workflows/verify-bundled.yml
@@ -0,0 +1,28 @@
1
+name: Verify Bundled
2
+
3
+on:
4
+ schedule:
5
+ - cron: "0 1 * * *"
6
+ workflow_dispatch: ~
7
+ push:
8
+ paths:
9
+ - ext/opcache/jit/ir/**
10
+ pull_request:
11
12
13
14
+permissions:
15
+ contents: read
16
17
+jobs:
18
+ verify_bundled:
19
+ runs-on: ubuntu-22.04
20
+ steps:
21
+ - name: git checkout
22
+ uses: actions/checkout@v5
23
+ - name: Download IR
24
+ run: |
25
+ rm -rf ext/opcache/jit/ir
26
+ git clone --revision=5a81104e650ebd7ac24eb63d4dff67db723a5278 https://github.com/dstogov/ir.git ext/opcache/jit/ir
27
+ - name: Verify bundled files are up to date
28
+ run: git add . -N && git diff -a --exit-code
0 commit comments