Skip to content

Commit 05b42ab

Browse files
authored
Fix Linux workflows remove x86 (32Bit)
1 parent 7557491 commit 05b42ab

File tree

1 file changed

+1
-7
lines changed

1 file changed

+1
-7
lines changed

.github/workflows/linux.yml

Lines changed: 1 addition & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ jobs:
3333
strategy:
3434
matrix:
3535
compiler: [GCC, Clang]
36-
arch: [x64, x86]
36+
arch: [x64]
3737
include:
3838
- compiler: GCC
3939
arch: arm64
@@ -56,17 +56,13 @@ jobs:
5656
sudo apt install gcc-aarch64-linux-gnu
5757
elif [ "${{ matrix.arch }}" == "arm" ]; then
5858
sudo apt install gcc-arm-linux-gnueabihf
59-
elif [ "${{ matrix.arch }}" == "x86" ]; then
60-
sudo apt install gcc-multilib g++-multilib
6159
fi
6260
- name: Build Debug Target
6361
run: |
6462
if [ "${{ matrix.arch }}" == "arm64" ]; then
6563
make CC=aarch64-linux-gnu-gcc debug
6664
elif [ "${{ matrix.arch }}" == "arm" ]; then
6765
make CC=arm-linux-gnueabihf-gcc debug
68-
elif [ "${{ matrix.arch }}" == "x86" ]; then
69-
make CC="gcc -m32" debug
7066
else
7167
compiler=${{ matrix.compiler }}
7268
make CC=${compiler,,} debug
@@ -77,8 +73,6 @@ jobs:
7773
make CC=aarch64-linux-gnu-gcc
7874
elif [ "${{ matrix.arch }}" == "arm" ]; then
7975
make CC=arm-linux-gnueabihf-gcc
80-
elif [ "${{ matrix.arch }}" == "x86" ]; then
81-
make CC="gcc -m32"
8276
else
8377
compiler=${{ matrix.compiler }}
8478
make CC=${compiler,,}

0 commit comments

Comments
 (0)