File tree 1 file changed +14
-1
lines changed 1 file changed +14
-1
lines changed Original file line number Diff line number Diff line change 24
24
GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }}
25
25
SONAR_TOKEN : ${{ secrets.SONARQUBE_TOKEN }}
26
26
SONAR_HOST_URL : ${{ secrets.SONAR_HOST_URL }} # SonarQube URL is stored in a GitHub secret
27
- run : DYLD_PRINT_LIBRARIES=1 sonar-scanner --define sonar.cfamily.compile-commands=build/compile_commands.json
27
+ run : |
28
+ export DYLD_PRINT_OPTS="1"
29
+ export DYLD_PRINT_ENV="1"
30
+ export DYLD_PRINT_LIBRARIES="1"
31
+ export DYLD_PRINT_LIBRARIES_POST_LAUNCH="1"
32
+ export DYLD_PRINT_APIS="1"
33
+ export DYLD_PRINT_BINDINGS="1"
34
+ export DYLD_PRINT_INITIALIZERS="1"
35
+ export DYLD_PRINT_REBASINGS="1"
36
+ export DYLD_PRINT_SEGMENTS="1"
37
+ export DYLD_PRINT_STATISTICS="1"
38
+ export DYLD_PRINT_DOFS="1"
39
+ export DYLD_PRINT_RPATHS="1"
40
+ sonar-scanner --define sonar.cfamily.compile-commands=build/compile_commands.json
You can’t perform that action at this time.
0 commit comments