-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
71 lines (71 loc) · 1.58 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
{
"name": "@xpack/ci-demo",
"version": "0.1.0",
"description": "A CI test using xpm",
"main": "",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "https://github.com/xpack/ci-demo.git"
},
"homepage": "https://github.com/xpack/ci-demo/",
"bugs": {
"url": "https://github.com/xpack/ci-demo/issues/"
},
"keywords": [
"xpack"
],
"author": {
"name": "Liviu Ionescu",
"email": "ilg@livius.net",
"url": "https://github.com/ilg-ul"
},
"license": "MIT",
"config": {},
"dependencies": {},
"devDependencies": {},
"xpack": {
"minimumXpmRequired": "0.16.3",
"dependencies": {},
"devDependencies": {
"@xpack-dev-tools/cmake": {
"specifier": "3.26.5-1.1",
"local": "link",
"platforms": "all"
},
"@xpack-dev-tools/ninja-build": {
"specifier": "1.11.1-3.1",
"local": "link",
"platforms": "all"
},
"@xpack-dev-tools/clang": {
"specifier": "16.0.6-1.1",
"local": "link",
"platforms": "all"
}
},
"properties": {},
"actions": {
"prepare": [
"cmake -S . -B build -G Ninja -D CMAKE_TOOLCHAIN_FILE=cmake/clang.cmake"
],
"build": [
"cmake --build build --verbose"
],
"clean": [
"cmake --build build --target clean"
],
"execute": [
"cd build && ctest -V"
],
"test": [
"xpm run prepare",
"xpm run build",
"xpm run execute"
]
},
"buildConfigurations": {}
}
}