Skip to content

Commit

Permalink
Remove 32 bit windows builds from CI and Release (surge-synthesizer#7757
Browse files Browse the repository at this point in the history
)

1. No more 32 bit windows builds
2. MSVC PR test just builds surge-common; juce will build and relesae
   is clang

Should lead to faster CI and faster release builds
  • Loading branch information
baconpaul authored Aug 14, 2024
1 parent 68494b1 commit a0c2e2c
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 13 deletions.
13 changes: 3 additions & 10 deletions .github/workflows/build-pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,20 +13,13 @@ jobs:
strategy:
matrix:
include:
- name: "windows msvc"
- name: "windows msvc common only"
os: windows-latest
target: surge-xt_Standalone
target: surge-common
cmakeConfig: -A x64
cmakeOpt: DEBUG
runTests: false

- name: "windows msvc 32 bit"
os: windows-latest
target: surge-xt_Standalone
cmakeConfig: -A Win32
cmakeOpt: DEBUG
runTests: false

- name: "windows clang"
os: windows-latest
target: surge-xt_Standalone
Expand Down Expand Up @@ -65,7 +58,7 @@ jobs:
- name: "windows test runner"
os: windows-latest
target: surge-testrunner
cmakeConfig: -A x64
cmakeConfig: -GNinja -DCMAKE_CXX_COMPILER=clang++ -DCMAKE_C_COMPILER=clang
cmakeOpt: RELEASE
runTests: true

Expand Down
4 changes: 1 addition & 3 deletions .github/workflows/build-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -53,9 +53,7 @@ jobs:
- os: windows-latest
name: windows-64bit
cmakeArgs: -GNinja -DCMAKE_CXX_COMPILER=clang++ -DCMAKE_C_COMPILER=clang
- os: windows-latest
name: windows-32bit
cmakeArgs: -A Win32

- os: macos-latest
name: macos
cmakeArgs: -D"CMAKE_OSX_ARCHITECTURES=arm64;x86_64"
Expand Down

0 comments on commit a0c2e2c

Please sign in to comment.