File tree Expand file tree Collapse file tree 1 file changed +5
-8
lines changed
Expand file tree Collapse file tree 1 file changed +5
-8
lines changed Original file line number Diff line number Diff line change @@ -47,21 +47,18 @@ jobs:
4747 # Prefix the list here with "+" to use these queries and those in the config file.
4848 # queries: ./path/to/local/query, your-org/your-repo/queries@main
4949
50- # Autobuild attempts to build any compiled languages (C/C++, C#, or Java).
51- # If this step fails, then you should remove it and run the build manually (see below)
52- - name : Autobuild
53- uses : github/codeql-action/autobuild@v1
54-
5550 # ℹ️ Command-line programs to run using the OS shell.
5651 # 📚 https://git.io/JvXDl
5752
5853 # ✏️ If the Autobuild fails above, remove it and uncomment the following three lines
5954 # and modify them (or add more) to build your code if your project
6055 # uses a compiled language
6156
62- # - run: |
63- # make bootstrap
64- # make release
57+ - run : |
58+ cmake -E make_directory ${{runner.workspace}}/build
59+ cd ${{runner.workspace}}/build
60+ cmake $GITHUB_WORKSPACE -DCMAKE_BUILD_TYPE=${{matrix.type}} -DCMAKE_INSTALL_PREFIX=install -DCC_COMMS_LIB_ONLY=ON
61+ cmake --build . --target install
6562
6663 - name : Perform CodeQL Analysis
6764 uses : github/codeql-action/analyze@v1
You can’t perform that action at this time.
0 commit comments