Skip to content

Commit 00c0eec

Browse files
authored
Added manual steps to build the library
1 parent f15f02a commit 00c0eec

File tree

1 file changed

+18
-5
lines changed

1 file changed

+18
-5
lines changed

.github/workflows/codeql-analysis.yml

Lines changed: 18 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -44,8 +44,8 @@ jobs:
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
@@ -54,9 +54,22 @@ jobs:
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

0 commit comments

Comments
 (0)