Skip to content

Commit 2887ee4

Browse files
committed
[ci] Add github workflow to check diff against upstream CppInterOp
1 parent d85b42f commit 2887ee4

File tree

1 file changed

+26
-0
lines changed

1 file changed

+26
-0
lines changed

Diff for: .github/workflows/cppinterop-diff.yml

+26
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
name: Diff CppInterOp against upstream
2+
on:
3+
pull_request:
4+
paths:
5+
- 'interpreter/CppInterOp/**'
6+
7+
jobs:
8+
cppinterop-diff:
9+
runs-on: ubuntu-latest
10+
steps:
11+
- name: Check out ROOT
12+
uses: actions/checkout@v4
13+
with:
14+
path: root
15+
- name: Check out CppInterOp
16+
uses: actions/checkout@v4
17+
with:
18+
repository: compiler-research/CppInterOp
19+
ref: 6c6f94a22bd971520a249e2c02e4259cdd3a5be6
20+
path: CppInterOp
21+
- name: Drop directories that are not added to ROOT
22+
working-directory: CppInterOp
23+
run: |
24+
rm -rf .git .github discord.svg
25+
- name: Compare
26+
run: diff -ur CppInterOp/ root/interpreter/CppInterOp/

0 commit comments

Comments
 (0)