File tree Expand file tree Collapse file tree 1 file changed +1
-7
lines changed
Expand file tree Collapse file tree 1 file changed +1
-7
lines changed Original file line number Diff line number Diff line change 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
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,,}
You can’t perform that action at this time.
0 commit comments