@nordicsemiconductor/firmware-ci-runner-azure 1.7.22 → 1.7.26

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.
package/cli/index.js CHANGED
@@ -14,7 +14,7 @@ process.on('unhandledRejection', die)
14
14
 
15
15
  const { run } = require('../dist/run')
16
16
  run({
17
- target: process.env.RUN_TARGET ?? 'nrf9160dk_nrf9160ns',
17
+ target: process.env.RUN_TARGET ?? 'nrf9160dk_nrf9160_ns',
18
18
  port: process.env.RUN_PORT ?? '/dev/ttyACM0',
19
19
  })(JSON.parse(fs.readFileSync(0, 'utf-8')))
20
20
  .then((res) => {
package/dist/run.d.ts CHANGED
@@ -35,6 +35,6 @@ declare type Args = {
35
35
  };
36
36
  export declare const run: ({ port, target, }: {
37
37
  port: string;
38
- target: 'thingy91_nrf9160ns' | 'nrf9160dk_nrf9160ns';
38
+ target: 'thingy91_nrf9160_ns' | 'nrf9160dk_nrf9160_ns';
39
39
  }) => (args: Args) => Result;
40
40
  export {};
package/dist/run.js CHANGED
@@ -30,7 +30,7 @@ const run = ({ port, target, }) => {
30
30
  debug('powerCycle', powerCycle);
31
31
  debug('flashLogLocation', flashLogLocation);
32
32
  debug('deviceLogLocation', deviceLogLocation);
33
- const atHost = target === 'thingy91_nrf9160ns'
33
+ const atHost = target === 'thingy91_nrf9160_ns'
34
34
  ? firmware_ci_device_helpers_1.atHostHexfile.thingy91
35
35
  : firmware_ci_device_helpers_1.atHostHexfile['9160dk'];
36
36
  const { clientId, clientSecret, tenantId } = JSON.parse(testEnv.credentials);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@nordicsemiconductor/firmware-ci-runner-azure",
3
- "version": "1.7.22",
3
+ "version": "1.7.26",
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",
@@ -30,7 +30,7 @@
30
30
  "dependencies": {
31
31
  "@azure/identity": "2.0.1",
32
32
  "@azure/storage-blob": "12.8.0",
33
- "@nordicsemiconductor/firmware-ci-device-helpers": "11.1.24",
33
+ "@nordicsemiconductor/firmware-ci-device-helpers": "11.1.27",
34
34
  "@serialport/parser-readline": "9.2.4",
35
35
  "azure-iothub": "1.14.6",
36
36
  "semver": "7.3.5",
@@ -38,14 +38,14 @@
38
38
  "uuid": "8.3.2"
39
39
  },
40
40
  "devDependencies": {
41
- "@nordicsemiconductor/asset-tracker-cloud-code-style": "9.2.31",
41
+ "@nordicsemiconductor/asset-tracker-cloud-code-style": "9.2.33",
42
42
  "@types/jest": "27.0.3",
43
- "@types/node": "16.11.12",
43
+ "@types/node": "16.11.13",
44
44
  "@types/semver": "7.3.9",
45
45
  "@types/serialport": "8.0.2",
46
46
  "@types/uuid": "8.3.3",
47
47
  "chalk": "5.0.0",
48
- "jest": "27.4.4",
48
+ "jest": "27.4.5",
49
49
  "ts-jest": "27.1.1"
50
50
  },
51
51
  "lint-staged": {