Skip to content

Commit e986879

Browse files
authored
Fix ids check workflow
1 parent 8465f22 commit e986879

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

.github/workflows/ids-check.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -77,26 +77,26 @@ jobs:
7777
set -e
7878
cd ${{ github.workspace }}/llvm-project
7979
export H_OR_CPP_FILES_CHANGED_LAST_COMMIT=$(git diff --name-only HEAD~1 HEAD -- 'llvm/include/llvm/**/*.h' ':!llvm/include/llvm/Debuginfod/' ':!llvm/include/llvm/Demangle/' )
80-
echo $H_OR_CPP_FILES_CHANGED_LAST_COMMIT
80+
echo $H_OR_CPP_FILES_CHANGED_LAST_COMMIT
8181
if [ ! -z "${H_OR_CPP_FILES_CHANGED_LAST_COMMIT}" ]; then
8282
for file in $H_OR_CPP_FILES_CHANGED_LAST_COMMIT; do
83-
echo $file
83+
echo $file
8484
${{ github.workspace }}/ids/build/bin/idt -p ${{ github.workspace }}/llvm-project/build/compile_commands.json --apply-fixits --export-macro=LLVM_ABI --include-header="llvm/Support/Compiler.h" --extra-arg="-DLLVM_ABI=__attribute__((visibility(\"default\")))" --extra-arg="-Wno-macro-redefined" $file
8585
done
8686
fi
8787
export H_OR_CPP_FILES_CHANGED_LAST_COMMIT=$(git diff --name-only HEAD~1 HEAD -- 'llvm/include/llvm-c/**/*.h' )
88-
echo $H_OR_CPP_FILES_CHANGED_LAST_COMMIT
88+
echo $H_OR_CPP_FILES_CHANGED_LAST_COMMIT
8989
if [ ! -z "${H_OR_CPP_FILES_CHANGED_LAST_COMMIT}" ]; then
9090
for file in $H_OR_CPP_FILES_CHANGED_LAST_COMMIT; do
91-
echo $file
91+
echo $file
9292
${{ github.workspace }}/ids/build/bin/idt -p ${{ github.workspace }}/llvm-project/build/compile_commands.json --apply-fixits --export-macro=LLVM_C_ABI --include-header="llvm-c/Visibility.h" --extra-arg="-DLLVM_C_ABI=__attribute__((visibility(\"default\")))" --extra-arg="-Wno-macro-redefined" $file
9393
done
9494
fi
9595
export H_OR_CPP_FILES_CHANGED_LAST_COMMIT=$(git diff --name-only HEAD~1 HEAD -- 'llvm/include/llvm/Demangle/**/*.h' )
96-
echo $H_OR_CPP_FILES_CHANGED_LAST_COMMIT
96+
echo $H_OR_CPP_FILES_CHANGED_LAST_COMMIT
9797
if [ ! -z "${H_OR_CPP_FILES_CHANGED_LAST_COMMIT}" ]; then
9898
for file in $H_OR_CPP_FILES_CHANGED_LAST_COMMIT; do
99-
echo $file
99+
echo $file
100100
${{ github.workspace }}/ids/build/bin/idt -p ${{ github.workspace }}/llvm-project/build/compile_commands.json --apply-fixits --export-macro=DEMANGLE_ABI --include-header="llvm/Demangle/Visibility.h" --extra-arg="-DEMANGLE_ABI=__attribute__((visibility(\"default\")))" --extra-arg="-Wno-macro-redefined" $file
101101
done
102102
fi

0 commit comments

Comments
 (0)