mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-22 07:30:19 +00:00
Meta: Remove unused caching from Sonar Cloud configuration
I was experimenting with using caching while doing the initial prototype of the Sonar Cloud workflow. However the cache size for the static analysis data ended up being large enough that it would put us over the git hub actions limit. Given that we currently only run this pipeline once a day, it seems reasonable to just remove caching. If in the future we decide to run the pipeline on every PR, caching would become crucial as the current un-cached analysis time is around 1 hour and 50 minutes. If we did this we would need to move the pipeline to Azure DevOps where we have effectively infinite cache available.
This commit is contained in:
parent
620e4fd0d2
commit
eddccf11da
Notes:
sideshowbarker
2024-07-18 03:33:15 +09:00
Author: https://github.com/bgianfo Commit: https://github.com/SerenityOS/serenity/commit/eddccf11daa Pull-request: https://github.com/SerenityOS/serenity/pull/10183
1 changed files with 0 additions and 2 deletions
|
@ -40,8 +40,6 @@ jobs:
|
|||
echo "$HOME/.sonar/sonar-scanner-${{ env.SONAR_SCANNER_VERSION }}-linux/bin" >> $GITHUB_PATH
|
||||
echo "sonar.projectKey=SerenityOS_serenity" >> ${{ github.workspace }}/sonar-project.properties
|
||||
echo "sonar.organization=serenityos" >> ${{ github.workspace }}/sonar-project.properties
|
||||
echo "sonar.cfamily.cache.enabled=true" >> ${{ github.workspace }}/sonar-project.properties
|
||||
echo "sonar.cfamily.cache.path=.sonar" >> ${{ github.workspace }}/sonar-project.properties
|
||||
echo "sonar.cfamily.compile-commands=${{ github.workspace }}/Build/${{ env.SONAR_ANALYSIS_ARCH }}/compile_commands.json" >> ${{ github.workspace }}/sonar-project.properties
|
||||
echo "sonar.cfamily.threads=2" >> ${{ github.workspace }}/sonar-project.properties
|
||||
echo "sonar.host.url=${{ env.SONAR_SERVER_URL }}" >> ${{ github.workspace }}/sonar-project.properties
|
||||
|
|
Loading…
Reference in a new issue