We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3ceb16d commit 30537eeCopy full SHA for 30537ee
.github/workflows/test.yml
@@ -17,13 +17,13 @@ jobs:
17
run: |
18
sudo apt-get update -y -qq
19
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
+ 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 LDFLAGS="-m32"
25
fi
26
- if [ ${{ matrix.compiler }} == 'gcc' ]; then
+ if [ "${{ matrix.compiler }}" == "gcc" ]; then
27
sudo apt-get install -y gcc
28
export CC=$(which gcc)
29
else
0 commit comments