We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cdfbb61 commit e941885Copy full SHA for e941885
.github/workflows/premerge.yaml
@@ -33,5 +33,14 @@ jobs:
33
- name: Build and Test
34
continue-on-error: true
35
run: |
36
- echo test
+ modified_files=$(git diff --name-only HEAD~1...HEAD)
37
+ modified_dirs=$(echo "$modified_files" | cut -d'/' -f1 | sort -u)
38
+
39
+ echo $modified_files
40
+ echo $modified_dirs
41
42
+ . ./.ci/compute-projects.sh
43
44
+ all_projects="bolt clang clang-tools-extra compiler-rt cross-project-tests flang libc libclc lld lldb llvm mlir openmp polly pstl"
45
+ modified_projects="$(keep-modified-projects ${all_projects})"
46
0 commit comments