Skip to content

Commit add86c7

Browse files
committed
Verify bundled files
1 parent 6da93a8 commit add86c7

File tree

1 file changed

+28
-0
lines changed

1 file changed

+28
-0
lines changed
Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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+
paths:
12+
- ext/opcache/jit/ir/**
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

Comments
 (0)