@nordicsemiconductor/firmware-ci-runner-azure 3.0.157 → 3.1.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/dist/run.js +4 -1
  2. package/package.json +1 -1
package/dist/run.js CHANGED
@@ -185,6 +185,9 @@ const run = ({ port, target, }) => {
185
185
  },
186
186
  });
187
187
  const url = new url_1.URL(`https://${testEnv.storageAccountName}.blob.core.windows.net/${fotaStorageContainer}/${fotaFileName}`);
188
+ debug(`File uploaded`, fotaFileName);
189
+ debug(JSON.stringify(uploadResult));
190
+ debug(url.toString());
188
191
  const res = await iotHubRegistry
189
192
  .createQuery(`SELECT * FROM devices WHERE deviceId='${deviceId}'`)
190
193
  .nextAsTwin();
@@ -194,7 +197,7 @@ const run = ({ port, target, }) => {
194
197
  firmware: {
195
198
  fwVersion: `${appVersion}-upgraded`,
196
199
  fwLocation: {
197
- protocol: url.protocol,
200
+ protocol: 'http:',
198
201
  host: url.hostname,
199
202
  path: url.pathname.slice(1),
200
203
  },
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@nordicsemiconductor/firmware-ci-runner-azure",
3
- "version": "3.0.157",
3
+ "version": "3.1.1",
4
4
  "description": "Runs firmware on a real device connected to Azure IoT hub.",
5
5
  "main": "./dist/export.js",
6
6
  "bin": "./cli/index.js",