Skip to content

Commit

Permalink
Remove 32-bit builds from CI on Github and Gitlab.
Browse files Browse the repository at this point in the history
  • Loading branch information
sa666666 committed May 8, 2024
1 parent 362a3b8 commit 63bc095
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 31 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ jobs:
runs-on: windows-latest
strategy:
matrix:
platform: [x64, Win32]
platform: [x64]
env:
Platform: ${{ matrix.platform }}
SDL2_version: 2.26.0
Expand All @@ -59,7 +59,7 @@ jobs:
7z x "C:\SDL2-devel.zip" -o"C:\"
xcopy /S "C:\SDL2-%SDL2_version%\include" src\common
if %Platform%==x64 xcopy /S "C:\SDL2-%SDL2_version%\lib\x64" src\os\windows
if %Platform%==Win32 xcopy /S "C:\SDL2-%SDL2_version%\lib\x86" src\os\windows
- name: Build Stella
run: |
msbuild src\os\windows\Stella.sln
32 changes: 3 additions & 29 deletions .gitlab-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,18 +18,10 @@ include:
- project: 'libretro-infrastructure/ci-templates'
file: '/windows-x64-mingw.yml'

# Windows 32-bit
- project: 'libretro-infrastructure/ci-templates'
file: '/windows-i686-mingw.yml'

# Linux 64-bit
- project: 'libretro-infrastructure/ci-templates'
file: '/linux-x64.yml'

# Linux 32-bit
- project: 'libretro-infrastructure/ci-templates'
file: '/linux-i686.yml'

# MacOS 64-bit
- project: 'libretro-infrastructure/ci-templates'
file: '/osx-x64.yml'
Expand Down Expand Up @@ -59,7 +51,7 @@ include:
# tvOS (AppleTV)
- project: 'libretro-infrastructure/ci-templates'
file: '/tvos-arm64.yml'

#################################### MISC ##################################

# Stages for building
Expand All @@ -79,24 +71,12 @@ libretro-build-windows-x64:
- .libretro-windows-x64-mingw-make-default
- .core-defs

# Windows 32-bit
libretro-build-windows-i686:
extends:
- .libretro-windows-i686-mingw-make-default
- .core-defs

# Linux 64-bit
libretro-build-linux-x64:
extends:
- .libretro-linux-x64-make-default
- .core-defs

# Linux 32-bit
libretro-build-linux-i686:
extends:
- .libretro-linux-i686-make-default
- .core-defs

# MacOS 64-bit
libretro-build-osx-x64:
extends:
Expand All @@ -108,7 +88,7 @@ libretro-build-osx-arm64:
extends:
- .libretro-osx-arm64-make-default
- .core-defs

################################### CELLULAR #################################
# Android ARMv7a
android-armeabi-v7a:
Expand All @@ -127,12 +107,6 @@ android-x86_64:
extends:
- .libretro-android-jni-x86_64
- .core-defs

# Android 32-bit x86
android-x86:
extends:
- .libretro-android-jni-x86
- .core-defs

# iOS
libretro-build-ios-arm64:
Expand All @@ -145,7 +119,7 @@ libretro-build-ios9:
extends:
- .libretro-ios9-make-default
- .core-defs

# tvOS
libretro-build-tvos-arm64:
extends:
Expand Down

0 comments on commit 63bc095

Please sign in to comment.