@@ -93,13 +93,16 @@ jobs:
9393
9494 build-ios :
9595 name : Build iOS App
96- runs-on : macos-13 # Plus stable que macos-latest
96+ runs-on : macos-14 # Try macos-14 with manual Xcode selection
9797 needs : lint-and-type-check
9898
9999 steps :
100100 - name : Checkout code
101101 uses : actions/checkout@v4
102102
103+ - name : Select Xcode version
104+ run : sudo xcode-select -s /Applications/Xcode_15.4.app/Contents/Developer
105+
103106 - name : Setup Node.js
104107 uses : actions/setup-node@v4
105108 with :
@@ -131,7 +134,7 @@ jobs:
131134
132135 - name : Pod install
133136 working-directory : example/ios
134- run : pod install
137+ run : pod install --verbose
135138
136139 - name : Build iOS
137140 working-directory : example
@@ -149,31 +152,26 @@ jobs:
149152 name : ios-build-logs
150153 path : ~/Library/Logs/DiagnosticReports/
151154
152- build-windows :
153- name : Build Windows
154- runs-on : windows-latest
155- needs : lint-and-type-check
156-
157- steps :
158- - name : Checkout code
159- uses : actions/checkout@v4
160-
161- - name : Setup Node.js
162- uses : actions/setup-node@v4
163- with :
164- node-version : ' 20'
165- cache : ' npm'
166-
167- - name : Install dependencies
168- run : npm ci
169-
170- - name : Build library
171- run : npm run build
172-
173- - name : Setup MSBuild
174- uses : microsoft/setup-msbuild@v2
175-
176- - name : Build Windows project
177- working-directory : windows
178- run : msbuild RNViewShot.sln /p:Configuration=Debug /p:Platform="Any CPU"
155+ # TODO: Re-enable Windows build after fixing react-native-windows dependencies
156+ # build-windows:
157+ # name: Build Windows
158+ # runs-on: windows-latest
159+ # needs: lint-and-type-check
160+ # steps:
161+ # - name: Checkout code
162+ # uses: actions/checkout@v4
163+ # - name: Setup Node.js
164+ # uses: actions/setup-node@v4
165+ # with:
166+ # node-version: '20'
167+ # cache: 'npm'
168+ # - name: Install dependencies
169+ # run: npm ci
170+ # - name: Build library
171+ # run: npm run build
172+ # - name: Setup MSBuild
173+ # uses: microsoft/setup-msbuild@v2
174+ # - name: Build Windows project
175+ # working-directory: windows
176+ # run: msbuild RNViewShot\RNViewShot.csproj /p:Configuration=Debug /p:Platform="Any CPU"
179177
0 commit comments