@colony2/c2j 0.0.26 → 0.0.27
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/README.md +15 -0
- package/package.json +17 -17
package/README.md
CHANGED
|
@@ -20,6 +20,7 @@ Examples below assume you are running from the repo root.
|
|
|
20
20
|
c2j self
|
|
21
21
|
c2j cells
|
|
22
22
|
c2j init
|
|
23
|
+
c2j version
|
|
23
24
|
c2j submit
|
|
24
25
|
c2j run
|
|
25
26
|
c2j run one
|
|
@@ -32,6 +33,20 @@ c2j test
|
|
|
32
33
|
|
|
33
34
|
Use `go run ./cmd/c2j --help` or `c2j --help` to see the full command tree.
|
|
34
35
|
|
|
36
|
+
## Version Information
|
|
37
|
+
|
|
38
|
+
Use the `version` subcommand to identify the exact executable you are running:
|
|
39
|
+
|
|
40
|
+
```bash
|
|
41
|
+
c2j version
|
|
42
|
+
```
|
|
43
|
+
|
|
44
|
+
Release builds report the release version injected by the release pipeline. Local
|
|
45
|
+
`go build`, `go run`, and `go install` builds fall back to Go's embedded VCS
|
|
46
|
+
metadata, so untagged builds include the current git revision when it is
|
|
47
|
+
available. Dirty suffixes are only included when Go reports that the worktree was
|
|
48
|
+
modified at build time.
|
|
49
|
+
|
|
35
50
|
## Quick Start
|
|
36
51
|
|
|
37
52
|
### 1. Check current-cell resolution
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@colony2/c2j",
|
|
3
3
|
"type": "module",
|
|
4
|
-
"version": "0.0.
|
|
4
|
+
"version": "0.0.27",
|
|
5
5
|
"description": "c2j job system",
|
|
6
6
|
"scripts": {
|
|
7
7
|
"postinstall": "node install.js",
|
|
@@ -30,54 +30,57 @@
|
|
|
30
30
|
},
|
|
31
31
|
"archives": {
|
|
32
32
|
"darwin-arm64": {
|
|
33
|
-
"name": "c2j_0.0.
|
|
34
|
-
"url": "https://github.com/colony-2/c2j-release/releases/download/v0.0.
|
|
33
|
+
"name": "c2j_0.0.27_Darwin_arm64.tar.gz",
|
|
34
|
+
"url": "https://github.com/colony-2/c2j-release/releases/download/v0.0.27/c2j_0.0.27_Darwin_arm64.tar.gz",
|
|
35
35
|
"bins": [
|
|
36
36
|
"c2j"
|
|
37
37
|
],
|
|
38
38
|
"format": "tar.gz",
|
|
39
39
|
"checksum": {
|
|
40
40
|
"algorithm": "sha256",
|
|
41
|
-
"digest": "
|
|
41
|
+
"digest": "23a3c9de32fa1b91777c1cfe86edfe373cc2c5dd083e53009b77a396746c442d"
|
|
42
42
|
}
|
|
43
43
|
},
|
|
44
44
|
"darwin-x64": {
|
|
45
|
-
"name": "c2j_0.0.
|
|
46
|
-
"url": "https://github.com/colony-2/c2j-release/releases/download/v0.0.
|
|
45
|
+
"name": "c2j_0.0.27_Darwin_x86_64.tar.gz",
|
|
46
|
+
"url": "https://github.com/colony-2/c2j-release/releases/download/v0.0.27/c2j_0.0.27_Darwin_x86_64.tar.gz",
|
|
47
47
|
"bins": [
|
|
48
48
|
"c2j"
|
|
49
49
|
],
|
|
50
50
|
"format": "tar.gz",
|
|
51
51
|
"checksum": {
|
|
52
52
|
"algorithm": "sha256",
|
|
53
|
-
"digest": "
|
|
53
|
+
"digest": "f248d96bca72b30a568d5f64e30ba26333ce40dd3ba98d8f3e2cf9010b90880f"
|
|
54
54
|
}
|
|
55
55
|
},
|
|
56
56
|
"linux-arm64": {
|
|
57
|
-
"name": "c2j_0.0.
|
|
58
|
-
"url": "https://github.com/colony-2/c2j-release/releases/download/v0.0.
|
|
57
|
+
"name": "c2j_0.0.27_Linux_arm64.tar.gz",
|
|
58
|
+
"url": "https://github.com/colony-2/c2j-release/releases/download/v0.0.27/c2j_0.0.27_Linux_arm64.tar.gz",
|
|
59
59
|
"bins": [
|
|
60
60
|
"c2j"
|
|
61
61
|
],
|
|
62
62
|
"format": "tar.gz",
|
|
63
63
|
"checksum": {
|
|
64
64
|
"algorithm": "sha256",
|
|
65
|
-
"digest": "
|
|
65
|
+
"digest": "216eba99071476fbe3edc6c9b42daaf85472d0857b7196f634eeffccf410210a"
|
|
66
66
|
}
|
|
67
67
|
},
|
|
68
68
|
"linux-x64": {
|
|
69
|
-
"name": "c2j_0.0.
|
|
70
|
-
"url": "https://github.com/colony-2/c2j-release/releases/download/v0.0.
|
|
69
|
+
"name": "c2j_0.0.27_Linux_x86_64.tar.gz",
|
|
70
|
+
"url": "https://github.com/colony-2/c2j-release/releases/download/v0.0.27/c2j_0.0.27_Linux_x86_64.tar.gz",
|
|
71
71
|
"bins": [
|
|
72
72
|
"c2j"
|
|
73
73
|
],
|
|
74
74
|
"format": "tar.gz",
|
|
75
75
|
"checksum": {
|
|
76
76
|
"algorithm": "sha256",
|
|
77
|
-
"digest": "
|
|
77
|
+
"digest": "5e72806268af9710f22e856be32c183b1c3a3273ba6ae33ddd3b4f4e9989234b"
|
|
78
78
|
}
|
|
79
79
|
}
|
|
80
80
|
},
|
|
81
|
+
"engines": {
|
|
82
|
+
"node": "\u003e=14.0.0"
|
|
83
|
+
},
|
|
81
84
|
"keywords": [
|
|
82
85
|
"sandbox",
|
|
83
86
|
"docker",
|
|
@@ -85,8 +88,5 @@
|
|
|
85
88
|
"agent",
|
|
86
89
|
"cli",
|
|
87
90
|
"security"
|
|
88
|
-
]
|
|
89
|
-
"engines": {
|
|
90
|
-
"node": "\u003e=14.0.0"
|
|
91
|
-
}
|
|
91
|
+
]
|
|
92
92
|
}
|