Skip to content

Commit

Permalink
[ci] Add github workflow to check diff against upstream CppInterOp
Browse files Browse the repository at this point in the history
  • Loading branch information
aaronj0 committed Feb 5, 2025
1 parent 7461f2c commit 34a36e5
Showing 1 changed file with 26 additions and 0 deletions.
26 changes: 26 additions & 0 deletions .github/workflows/cppinterop-diff.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
name: Diff CppInterOp against upstream
on:
pull_request:
paths:
- 'interpreter/CppInterOp/**'

jobs:
cppinterop-diff:
runs-on: ubuntu-latest
steps:
- name: Check out ROOT
uses: actions/checkout@v4
with:
path: root
- name: Check out CppInterOp
uses: actions/checkout@v4
with:
repository: compiler-research/CppInterOp
ref: 490dfcb9fdfee1914aee0b5bbc778a5356e44378
path: CppInterOp
- name: Drop directories that are not added to ROOT
working-directory: CppInterOp
run: |
rm -rf .git .github
- name: Compare
run: diff -ur CppInterOp/ root/interpreter/CppInterOp/ --exclude="unittests"

0 comments on commit 34a36e5

Please sign in to comment.