Skip to content

Commit 7557491

Browse files
authored
Fix Linux workflows adding x86 (32Bit)
1 parent 031bb87 commit 7557491

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/linux.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ jobs:
6666
elif [ "${{ matrix.arch }}" == "arm" ]; then
6767
make CC=arm-linux-gnueabihf-gcc debug
6868
elif [ "${{ matrix.arch }}" == "x86" ]; then
69-
make CC=gcc -m32 debug
69+
make CC="gcc -m32" debug
7070
else
7171
compiler=${{ matrix.compiler }}
7272
make CC=${compiler,,} debug
@@ -78,7 +78,7 @@ jobs:
7878
elif [ "${{ matrix.arch }}" == "arm" ]; then
7979
make CC=arm-linux-gnueabihf-gcc
8080
elif [ "${{ matrix.arch }}" == "x86" ]; then
81-
make CC=gcc -m32
81+
make CC="gcc -m32"
8282
else
8383
compiler=${{ matrix.compiler }}
8484
make CC=${compiler,,}

0 commit comments

Comments
 (0)