Skip to content

Commit bba3313

Browse files
Add more env vars
1 parent c94aa3a commit bba3313

File tree

1 file changed

+14
-1
lines changed

1 file changed

+14
-1
lines changed

.github/workflows/build.yml

Lines changed: 14 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,4 +24,17 @@ jobs:
2424
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
2525
SONAR_TOKEN: ${{ secrets.SONARQUBE_TOKEN }}
2626
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

0 commit comments

Comments
 (0)