From 60131b19329f300806d44d450bc30ad030ef46c0 Mon Sep 17 00:00:00 2001 From: Sultan Uramaev Date: Sat, 1 Jun 2024 21:18:33 +0500 Subject: [PATCH] GitHub Actions: return support for 32-bit builds It was removed in 20947ed22d481514bc71729250055cff6a790641 just due to GLEW package is missing. Now, thanks to GLAD (#1684), we can return it. --- .github/workflows/cibuild.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/cibuild.yml b/.github/workflows/cibuild.yml index 1c0ff89ee62..ab92034e3d7 100644 --- a/.github/workflows/cibuild.yml +++ b/.github/workflows/cibuild.yml @@ -90,6 +90,7 @@ jobs: # Both cc and cxx should be set if we want to change the compiler. # You may also want to set XRAY_LINKER when changing the compiler. - { name: Ubuntu, os: ubuntu-latest, arch: amd64, cc: gcc, } + - { name: Ubuntu, os: ubuntu-latest, arch: i386, cc: gcc, } - { name: Ubuntu, os: ubuntu-latest, arch: amd64, cc: clang, cxx: clang++, flags: "-DXRAY_LINKER=lld", } #- { name: Ubuntu, os: ubuntu-latest, arch: arm64, cc: gcc, container: 'dockcross/linux-arm64', } #- { name: Ubuntu, os: ubuntu-latest, arch: ppc64el, cc: gcc, container: 'dockcross/linux-ppc64le:latest', }