We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 16457a8 commit 612b453Copy full SHA for 612b453
.github/workflows/test.yml
@@ -17,7 +17,7 @@ jobs:
17
CXXFLAGS: "-m${{ matrix.platform }}"
18
LDFLAGS: "-m${{ matrix.platform }}"
19
CC: "/usr/bin/${{ matrix.platform }}"
20
- C++: "${{ matrix.compiler == 'gcc' && '/usr/bin/g++' || '/usr/bin/clang++' }}"
+ CXX: "${{ matrix.compiler == 'gcc' && '/usr/bin/g++' || '/usr/bin/clang++' }}"
21
steps:
22
- name: Setup Dependencies
23
run: |
@@ -30,7 +30,7 @@ jobs:
30
31
gh release download -p "*.tar.gz" -R owasp-modsecurity/ModSecurity -O - | tar -xzf -
32
cd modsecurity-*
33
- ./configure --disable-lmdb --prefix=/usr
+ ./configure --without-lmdb --prefix=/usr
34
make -j $(nproc)
35
sudo make install
36
cd
0 commit comments