Enable CppInterOp #8
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 .github | |
- name: Compare | |
run: diff -ur CppInterOp/ root/interpreter/CppInterOp/ --exclude="unittests" |