File tree Expand file tree Collapse file tree 1 file changed +8
-5
lines changed Expand file tree Collapse file tree 1 file changed +8
-5
lines changed Original file line number Diff line number Diff line change @@ -55,18 +55,21 @@ jobs:
55
55
56
56
# Autobuild attempts to build any compiled languages (C/C++, C#, or Java).
57
57
# If this step fails, then you should remove it and run the build manually (see below)
58
- - name : Autobuild
59
- uses : github/codeql-action/autobuild@v2
58
+ # - name: Autobuild
59
+ # uses: github/codeql-action/autobuild@v2
60
60
61
61
# ℹ️ Command-line programs to run using the OS shell.
62
62
# 📚 See https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions#jobsjob_idstepsrun
63
63
64
64
# If the Autobuild fails above, remove it and uncomment the following three lines.
65
65
# modify them (or add more) to build your code if your project, please refer to the EXAMPLE below for guidance.
66
66
67
- # - run: |
68
- # echo "Run, Build Application using script"
69
- # ./location_of_script_within_repo/buildscript.sh
67
+ - run : |
68
+ echo "Run, Build Application using cmake"
69
+ git submodule init
70
+ git submodule update
71
+ cmake -B ${{github.workspace}}/build -DCMAKE_BUILD_TYPE=${{env.BUILD_TYPE}} -DCLANG_FORMAT=OFF -DCOMPILER_WARNINGS=OFF
72
+ cmake --build ${{github.workspace}}/build --config ${{env.BUILD_TYPE}}
70
73
71
74
- name : Perform CodeQL Analysis
72
75
uses : github/codeql-action/analyze@v2
You can’t perform that action at this time.
0 commit comments