Skip to content
代码片段 群组 项目
提交 0da7b904 编辑于 作者: Timotej Ecimovic's avatar Timotej Ecimovic
浏览文件

Merge branch 'zap-packaging' into silabs

No related branches found
No related tags found
无相关合并请求
......@@ -92,13 +92,33 @@ pipeline
}
}
}
stage('Zap application distribution build')
stage('Linux distribution artifacts')
{
steps
{
script
{
sh 'npm run dist'
sh 'npm run dist-linux'
}
}
}
stage('Mac distribution artifacts')
{
steps
{
script
{
sh 'npm run dist-mac || true'
}
}
}
stage('Windows distribution artifacts')
{
steps
{
script
{
sh 'npm run dist-win || true'
}
}
}
......
......@@ -34,6 +34,10 @@
"gen": "node src-script/zap-generate.js -z ./zcl-builtin/zcl-test.properties -g ./test/gen-template/gen-templates.json -i ./test/resource/save-file-test-regen.zap -o ./tmp",
"pack": "quasar build && electron-builder --dir",
"dist": "electron-builder",
"dist-all": "electron-builder -mwl",
"dist-linux": "electron-builder -l",
"dist-win": "electron-builder -w",
"dist-mac": "electron-builder -m",
"linuxpack-ui": "./dist/linux-unpacked/zap --zclProperties zcl-builtin/zcl-test.properties --genTemplateJson test/gen-template/gen-templates.json",
"linuxpack-check": "./dist/linux-unpacked/zap selfCheck --zclProperties zcl-builtin/zcl-test.properties --genTemplateJson test/gen-template/gen-templates.json",
"linuxpack-gen": "./dist/linux-unpacked/zap generate --noUi --noServer --zclProperties zcl-builtin/zcl-test.properties --genTemplateJson test/gen-template/gen-templates.json --output tmp",
......
0% 加载中 .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册