Skip to content

Commit

Permalink
Don't build *-uwp projects of icu4c (GH-10)
Browse files Browse the repository at this point in the history
These are superfluous for PHP, and apparently may cause issues[1].

[1] <https://github.com/winlibs/winlib-builder/actions/runs/10752666056/job/29821234927#step:7:4613>
  • Loading branch information
cmb69 authored Sep 8, 2024
1 parent 2fc6b65 commit 0bb5e36
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions .github/workflows/icu4c.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,10 @@ jobs:
toolset: ${{steps.virtuals.outputs.toolset}}
- name: Setup msbuild
uses: microsoft/setup-msbuild@v2
- name: Remove UWP projects
run: |
cd icu4c\source\allinone
for /f %%i in ('dotnet sln allinone.sln list ^| findstr _uwp') do @dotnet sln allinone.sln remove %%i
- name: Build icu4c
run: cd icu4c && msbuild /p:Configuration=Release;Platform=${{steps.virtuals.outputs.msarch}};PlatformToolset=${{steps.virtuals.outputs.msts}};WindowsTargetPlatformVersion=${{steps.virtuals.outputs.winsdk}} source\allinone\allinone.sln
- name: Install icu4c
Expand Down

0 comments on commit 0bb5e36

Please sign in to comment.