Skip to content

Commit 91e0363

Browse files
committed
Remove platform and compiler options
1 parent 33682cf commit 91e0363

File tree

1 file changed

+0
-16
lines changed

1 file changed

+0
-16
lines changed

Diff for: .github/workflows/test.yml

-16
Original file line numberDiff line numberDiff line change
@@ -10,27 +10,11 @@ jobs:
1010
strategy:
1111
matrix:
1212
os: [ubuntu-22.04]
13-
platform: [x32, x64]
14-
compiler: [gcc, clang]
1513
steps:
1614
- name: Setup Dependencies
1715
run: |
1816
sudo apt-get update -y -qq
1917
sudo apt-get install -y make autoconf automake make libyajl-dev libxml2-dev libmaxminddb-dev libpcre2-dev libpcre2-8-0 libpcre2-16-0 libpcre2-32-0 libcurl4-gnutls-dev
20-
if [ "${{ matrix.platform }}" == "x32" ]; then
21-
sudo dpkg --add-architecture i386
22-
sudo apt-get install -y gcc-multilib
23-
export CFLAGS="-m32"
24-
export CXXFLAGS="-m32"
25-
export LDFLAGS="-m32"
26-
fi
27-
if [ "${{ matrix.compiler }}" == "gcc" ]; then
28-
sudo apt-get install -y gcc
29-
export CC=$(which gcc)
30-
else
31-
sudo apt-get install -y clang
32-
export CC=$(which clang)
33-
fi
3418
- name: Install ModSecurity library
3519
env:
3620
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}

0 commit comments

Comments
 (0)