ghaction-cmake icon indicating copy to clipboard operation
ghaction-cmake copied to clipboard

Add ability to replace make call

Open Mingun opened this issue 4 years ago • 2 comments

This is needed for Sonar Qube build wrapper: https://docs.sonarqube.org/latest/analysis/languages/cfamily/

instead of

make VERBOSE=1

it requires, that build will run with

build-wrapper-linux-x86-64 --out-dir build_wrapper_output_directory make VERBOSE=1

Mingun avatar Dec 11 '19 18:12 Mingun

Interesting I think getting Sonar Qube to work is a bit more involved than just replacing the make call because the gh action is running inside a container that probably won't have build-wrapper-linux-x86-64 installed, unless we get it there. Is there a project I can take a look to understand how this works?

lpenz avatar Dec 15 '19 22:12 lpenz

Yes, of course. I plan to add action to install it first, as described in the Sonar Qube documentation. Actually, I don't know any working solution, I just trying to setup static analysis checks for https://github.com/AndrewCrewKuznetsov/xneur-devel.

Mingun avatar Dec 16 '19 04:12 Mingun