File tree Expand file tree Collapse file tree 1 file changed +18
-5
lines changed
Expand file tree Collapse file tree 1 file changed +18
-5
lines changed Original file line number Diff line number Diff line change 4444
4545 # Autobuild attempts to build any compiled languages (C/C++, C#, or Java).
4646 # If this step fails, then you should remove it and run the build manually (see below)
47- - name : Autobuild
48- uses : github/codeql-action/autobuild@v1
47+ # - name: Autobuild
48+ # uses: github/codeql-action/autobuild@v1
4949
5050 # ℹ️ Command-line programs to run using the OS shell.
5151 # 📚 https://git.io/JvXDl
5454 # and modify them (or add more) to build your code if your project
5555 # uses a compiled language
5656
57- # - run: |
58- # make bootstrap
59- # make release
57+ - name : Install libmicrohttpd dependency
58+ run : |
59+ curl https://s3.amazonaws.com/libhttpserver/libmicrohttpd_releases/libmicrohttpd-0.9.59.tar.gz -o libmicrohttpd-0.9.59.tar.gz
60+ cd libmicrohttpd-0.9.59
61+ ./configure --disable-examples
62+ make
63+ sudo make install
64+ working-directory : ./temp
6065
66+ - name : Manual steps to build the library
67+ run : |
68+ ./bootstrap
69+ mkdir build
70+ cd build
71+ ../configure
72+ make release
73+
6174 - name : Perform CodeQL Analysis
6275 uses : github/codeql-action/analyze@v1
You can’t perform that action at this time.
0 commit comments