File tree Expand file tree Collapse file tree 1 file changed +11
-6
lines changed
Expand file tree Collapse file tree 1 file changed +11
-6
lines changed Original file line number Diff line number Diff line change @@ -59,12 +59,17 @@ jobs:
5959 # By default, queries listed here will override any specified in a config file.
6060 # Prefix the list here with "+" to use these queries and those in the config file.
6161
62- # Autobuild attempts to build any compiled languages (C/C++, C#, or Java).
63- # If this step fails, then you should remove it and run the build manually (see below)
64- - name : Autobuild
65- uses : github/codeql-action/autobuild@cdefb33c0f6224e58673d9004f47f7cb3e328b89 # v3.29.5
66- with :
67- working-directory : harness
62+ - name : Install build dependencies
63+ run : |
64+ sudo apt-get -y update
65+ sudo apt-get -y install \
66+ clang gcc g++ make \
67+ gcc-multilib libc6-dev-i386
68+
69+ - name : Build harness (manual for CodeQL)
70+ run : |
71+ ./build.sh
72+ working-directory : harness
6873
6974 # ℹ️ Command-line programs to run using the OS shell.
7075
You can’t perform that action at this time.
0 commit comments