File tree Expand file tree Collapse file tree 2 files changed +10
-5
lines changed Expand file tree Collapse file tree 2 files changed +10
-5
lines changed Original file line number Diff line number Diff line change @@ -197,8 +197,8 @@ jobs:
197
197
run : |
198
198
cd ${{ env.CI_FOLDER }}/aws-iot-device-sdk-cpp-v2
199
199
python ./deviceadvisor/script/DATestRun.py
200
- windows-vs14 :
201
- runs-on : windows-2019 # windows-2019 is last env with Visual Studio 2015 (v14.0)
200
+ windows-vs17 :
201
+ runs-on : windows-2025
202
202
strategy :
203
203
matrix :
204
204
arch : [Win32, x64]
@@ -212,11 +212,13 @@ jobs:
212
212
role-to-assume : ${{ env.CI_IOT_CONTAINERS }}
213
213
aws-region : ${{ env.AWS_DEFAULT_REGION }}
214
214
- name : Build ${{ env.PACKAGE_NAME }} + consumers
215
+ # The "--cmake-extra=-Tv143" explicitly sets VS 17 2022 to be used for compilation.
216
+ # See https://cmake.org/cmake/help/latest/generator/Visual%20Studio%2017%202022.html#toolset-selection
215
217
run : |
216
218
md ${{ env.CI_FOLDER }}
217
219
cd ${{ env.CI_FOLDER }}
218
220
python -c "from urllib.request import urlretrieve; urlretrieve('${{ env.BUILDER_HOST }}/${{ env.BUILDER_SOURCE }}/${{ env.BUILDER_VERSION }}/builder.pyz?run=${{ env.RUN }}', 'builder.pyz')"
219
- python builder.pyz build -p ${{ env.PACKAGE_NAME }} --cmake-extra=-Tv140 --cmake-extra=-A${{ matrix.arch }}
221
+ python builder.pyz build -p ${{ env.PACKAGE_NAME }} --cmake-extra=-Tv143 --cmake-extra=-A${{ matrix.arch }}
220
222
- name : Running samples in CI setup
221
223
run : |
222
224
python -m pip install boto3
@@ -302,7 +304,7 @@ jobs:
302
304
cd ${{ env.CI_FOLDER }}/aws-iot-device-sdk-cpp-v2
303
305
python ./deviceadvisor/script/DATestRun.py
304
306
windows-app-verifier :
305
- runs-on : windows-2022 # latest
307
+ runs-on : windows-2025 # latest
306
308
permissions :
307
309
id-token : write # This is required for requesting the JWT
308
310
steps :
Original file line number Diff line number Diff line change @@ -1396,7 +1396,10 @@ namespace Aws
1396
1396
return true ;
1397
1397
}
1398
1398
1399
- void StreamResponseHandler::OnStreamEvent (Crt::ScopedResource<AbstractShapeBase> response) {}
1399
+ void StreamResponseHandler::OnStreamEvent (Crt::ScopedResource<AbstractShapeBase> response)
1400
+ {
1401
+ (void )response;
1402
+ }
1400
1403
1401
1404
void StreamResponseHandler::OnStreamClosed () {}
1402
1405
You can’t perform that action at this time.
0 commit comments