@norskvideo/ctl-dev-kit 0.1.45 → 0.1.47
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/conventions/smoke.yml +8 -3
- package/package.json +1 -1
package/conventions/smoke.yml
CHANGED
|
@@ -12,8 +12,13 @@
|
|
|
12
12
|
# customer would run it.
|
|
13
13
|
#
|
|
14
14
|
# Runner selection is a one-entry matrix carrying a JSON label array, because a
|
|
15
|
-
# string like '[ARM64, nvidia]' in runs-on is ONE label, not two
|
|
16
|
-
#
|
|
15
|
+
# string like '[ARM64, nvidia]' in runs-on is ONE label, not two. The runner
|
|
16
|
+
# MUST run Docker natively: `product add --image` publishes the control plane on
|
|
17
|
+
# a host port and the daemon polls 127.0.0.1:<port> for readiness, so on a
|
|
18
|
+
# docker-outside-of-docker pool (the x64 runners are containers) that loopback
|
|
19
|
+
# is the docker host's, never the runner's, and registration times out. Default
|
|
20
|
+
# '["ar-arm-vm"]' (native Docker, arm64 — the image is built for it here); the
|
|
21
|
+
# GPU box is '["ARM64","nvidia"]'.
|
|
17
22
|
name: smoke
|
|
18
23
|
|
|
19
24
|
on:
|
|
@@ -44,7 +49,7 @@ jobs:
|
|
|
44
49
|
strategy:
|
|
45
50
|
matrix:
|
|
46
51
|
include:
|
|
47
|
-
- runner: '["
|
|
52
|
+
- runner: '["ar-arm-vm"]'
|
|
48
53
|
runs-on: ${{ fromJSON(matrix.runner) }}
|
|
49
54
|
steps:
|
|
50
55
|
# BEFORE checkout: launched instances leave root-owned bind-mount target
|