Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Contribute to GitLab
Sign in
Toggle navigation
C
cpas6-install
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
李金钢
cpas6-install
Commits
07d71636
Commit
07d71636
authored
Mar 30, 2026
by
Auto Backup
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
feat: build
parent
0559f665
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
522 additions
and
496 deletions
+522
-496
CPAS6Setup_IAS.iss
CPAS6Setup_IAS.iss
+514
-494
Jenkinsfile
Jenkinsfile
+1
-1
build.js
build.js
+7
-1
No files found.
CPAS6Setup_IAS.iss
View file @
07d71636
This diff is collapsed.
Click to expand it.
Jenkinsfile
View file @
07d71636
...
...
@@ -108,7 +108,7 @@ pipeline {
)
string
(
name:
'NODE_WORKING_DIR'
,
defaultValue:
' G:\\cpas-framework'
,
description:
'electron打包脚本执行的工作目录 G:\\cpas-framework or C:/Users/Administrator/Desktop/youdatasumCode/framework'
)
string
(
name:
'BRANCH_NAME'
,
defaultValue:
'unknown'
,
description:
'要构建的分支名称'
)
string
(
name:
'INSTALLATION_DIR'
,
defaultValue:
''
,
description:
'安装包打包目录:E:/CPAS6-101
UFCPAS6.0 致同智审IAS版_测试版
'
)
string
(
name:
'INSTALLATION_DIR'
,
defaultValue:
''
,
description:
'安装包打包目录:E:/CPAS6-101
-UFCPAS6-zt
'
)
string
(
name:
'PUBLISH_DIR'
,
defaultValue:
'E:/产品安装包/05 大客户专版/109 致同/CPAS6.0 IAS版'
,
description:
'发布目录:E:/产品安装包/05 大客户专版/109 致同/CPAS6.0 IAS版'
)
}
...
...
build.js
View file @
07d71636
...
...
@@ -133,6 +133,12 @@ async function main() {
console
.
log
(
"Starting file copy..."
);
await
copyFiles
(
src
,
dest
,
subFolders
);
console
.
log
(
"File copy completed."
);
// If it's a file, copy directly
fs
.
copyFile
(
"./CPAS6Setup_IAS.iss"
,
dest
,
fs
.
constants
.
COPYFILE_FICLONE
,
(
err
)
=>
{
if
(
err
)
{
new
Error
(
`Error copying file:
${
err
}
`
);
}
});
// Run the updateVersion.js script
console
.
log
(
"Running updateVersion.js..."
);
...
...
@@ -141,7 +147,7 @@ async function main() {
// Run ISCC to compile the installer
console
.
log
(
"Running ISCC.exe..."
);
await
execCommand
(
`ISCC.exe "
${
dest
}
/CPAS6Setup_
智审IAS作业平台
.iss"`
);
await
execCommand
(
`ISCC.exe "
${
dest
}
/CPAS6Setup_
IAS
.iss"`
);
console
.
log
(
"ISCC.exe completed."
);
console
.
log
(
"Script execution completed successfully."
);
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment