Compare commits

...

19 Commits

Author SHA1 Message Date
orange-form
c8a9508b89 update master-pipeline.yml 2025-07-26 02:05:26 +00:00
orange-form
6b2e2e48bd update pipeline-20250723.yml 2025-07-26 01:43:12 +00:00
orange-form
8c7c53b953 create pipeline-20250723.yml 2025-07-23 12:58:11 +00:00
orange-form
96597cce04 add default pipeline template yaml 2025-07-23 12:55:39 +00:00
orange-form
2af76cac58 update README.md.
Signed-off-by: orange-form <3510245832@qq.com>
2025-07-20 10:49:12 +00:00
orange-form
e89291993a update README.md.
Signed-off-by: orange-form <3510245832@qq.com>
2025-07-20 10:47:19 +00:00
orange-form
52c8e206a6 update README.md.
Signed-off-by: orange-form <3510245832@qq.com>
2025-07-20 10:43:11 +00:00
orange-form
b6d22f0989 update README.md.
Signed-off-by: orange-form <3510245832@qq.com>
2025-07-20 10:37:41 +00:00
orange-form
5aaf67ea44 删除文件 images/wechatgroup5.png 2025-01-27 04:19:01 +00:00
orange-form
a986a1ae6f update README.md.
Signed-off-by: orange-form <3510245832@qq.com>
2025-01-27 04:18:46 +00:00
orange-form
670fd2561e update README.md.
Signed-off-by: orange-form <3510245832@qq.com>
2025-01-27 01:28:54 +00:00
orange-form
8157d3e862 update README.md.
Signed-off-by: orange-form <3510245832@qq.com>
2025-01-27 01:28:03 +00:00
orange-form
a01fe9c014 删除文件 images/wechatgroup.png 2025-01-26 07:35:06 +00:00
orange-form
9621e82cab update README.md.
Signed-off-by: orange-form <3510245832@qq.com>
2025-01-26 07:34:46 +00:00
orange-form
e89c1aeb33 删除文件 images/wechatgroup7.png 2025-01-24 00:59:26 +00:00
orange-form
23e3e23e61 update README.md.
Signed-off-by: orange-form <3510245832@qq.com>
2025-01-24 00:58:19 +00:00
orange-form
d4198d6dfc 删除文件 images/wechatgroup.png 2025-01-19 06:06:17 +00:00
orange-form
55decc1525 删除文件 images/wechatgroup5.png 2025-01-19 06:05:41 +00:00
orange-form
9ab6813255 update README.md.
Signed-off-by: orange-form <3510245832@qq.com>
2025-01-19 06:05:13 +00:00
9 changed files with 169 additions and 8 deletions

View File

@@ -0,0 +1,53 @@
version: '1.0'
name: branch-pipeline
displayName: BranchPipeline
stages:
- stage:
name: compile
displayName: 编译
steps:
- step: build@maven
name: build_maven
displayName: Maven 构建
# 支持6、7、8、9、10、11六个版本
jdkVersion: 8
# 支持2.2.1、3.2.5、3.3.9、3.5.2、3.5.3、3.5.4、3.6.1、3.6.3八个版本
mavenVersion: 3.3.9
# 构建命令
commands:
- mvn -B clean package -Dmaven.test.skip=true
# 非必填字段开启后表示将构建产物暂存但不会上传到制品库中7天后自动清除
artifacts:
# 构建产物名字作为产物的唯一标识可向下传递支持自定义默认为BUILD_ARTIFACT。在下游可以通过${BUILD_ARTIFACT}方式引用来获取构建物地址
- name: BUILD_ARTIFACT
# 构建产物获取路径是指代码编译完毕之后构建物的所在路径如通常jar包在target目录下。当前目录为代码库根目录
path:
- ./target
- step: publish@general_artifacts
name: publish_general_artifacts
displayName: 上传制品
# 上游构建任务定义的产物名默认BUILD_ARTIFACT
dependArtifact: BUILD_ARTIFACT
# 上传到制品库时的制品命名默认output
artifactName: output
dependsOn: build_maven
- stage:
name: release
displayName: 发布
steps:
- step: publish@release_artifacts
name: publish_release_artifacts
displayName: '发布'
# 上游上传制品任务的产出
dependArtifact: output
# 发布制品版本号
version: '1.0.0.0'
# 是否开启版本号自增,默认开启
autoIncrement: true
triggers:
push:
branches:
exclude:
- master
include:
- .*

View File

@@ -0,0 +1,44 @@
version: '1.0'
name: master-pipeline
displayName: MasterPipeline
triggers:
trigger: auto
push:
branches:
include:
- master
stages:
- name: compile
displayName: 编译
strategy: naturally
trigger: auto
steps:
- step: build@maven
name: build_maven
displayName: Maven 构建
jdkVersion: 8
mavenVersion: 3.3.9
commands:
- mvn -B clean package -Dmaven.test.skip=true
artifacts:
- name: BUILD_ARTIFACT
path:
- ./target
- step: publish@general_artifacts
name: publish_general_artifacts
displayName: 上传制品
dependArtifact: BUILD_ARTIFACT
artifactName: output
strategy: {}
dependsOn: build_maven
- name: release
displayName: 发布
strategy: naturally
trigger: auto
steps:
- step: publish@release_artifacts
name: publish_release_artifacts
displayName: 发布
dependArtifact: output
version: 1.0.0.0
autoIncrement: true

View File

@@ -0,0 +1,24 @@
version: '1.0'
name: pipeline-20250723
displayName: pipeline-20250723
triggers:
trigger: auto
push:
branches:
prefix:
- ''
stages:
- name: stage-d6d1ad59
displayName: 未命名
strategy: naturally
trigger: auto
executor: []
steps:
- step: sc@sbom
name: sbom
displayName: SBOM 扫描
scan: code
codePath: ./
notify: []
strategy:
retry: '0'

40
.workflow/pr-pipeline.yml Normal file
View File

@@ -0,0 +1,40 @@
version: '1.0'
name: pr-pipeline
displayName: PRPipeline
stages:
- stage:
name: compile
displayName: 编译
steps:
- step: build@maven
name: build_maven
displayName: Maven 构建
# 支持6、7、8、9、10、11六个版本
jdkVersion: 8
# 支持2.2.1、3.2.5、3.3.9、3.5.2、3.5.3、3.5.4、3.6.1、3.6.3八个版本
mavenVersion: 3.3.9
# 构建命令
commands:
- mvn -B clean package -Dmaven.test.skip=true
# 非必填字段开启后表示将构建产物暂存但不会上传到制品库中7天后自动清除
artifacts:
# 构建产物名字作为产物的唯一标识可向下传递支持自定义默认为BUILD_ARTIFACT。在下游可以通过${BUILD_ARTIFACT}方式引用来获取构建物地址
- name: BUILD_ARTIFACT
# 构建产物获取路径是指代码编译完毕之后构建物的所在路径如通常jar包在target目录下。当前目录为代码库根目录
path:
- ./target
- step: publish@general_artifacts
name: publish_general_artifacts
displayName: 上传制品
# 上游构建任务定义的产物名默认BUILD_ARTIFACT
dependArtifact: BUILD_ARTIFACT
# 构建产物制品库默认default系统默认创建
artifactRepository: default
# 上传到制品库时的制品命名默认output
artifactName: output
dependsOn: build_maven
triggers:
pr:
branches:
include:
- master

View File

@@ -11,14 +11,14 @@
- 橙单视频教程 [https://www.orangeforms.com/video](https://www.orangeforms.com/video)
- 免费代码生成 [https://code.orangeforms.com](https://code.orangeforms.com)
- 橙单演示工程 [https://demo.orangeforms.com](https://demo.orangeforms.com)
- 租户管理演示 [https://tenantadmin.orangeforms.com](https://tenantadmin.orangeforms.com)
- 租户运营演示 [https://tenant.orangeforms.com](https://tenant.orangeforms.com)
### 商业授权
- 商业版功能可对标售价「40w」的知名快开平台我们的价格仅为其 1/15。
- 永久授权,免费升级,全部源码交付,无任何后续付费套路。
### 视频推荐
- [橙单快开平台企业最佳选择](https://www.bilibili.com/video/BV1WAq4YjEEj/?vd_source=83bce1401008f7ee3c485dbbb91cd4c3)
- [橙单赋能若依构建快开平台](https://www.bilibili.com/video/BV1EfqSYTEKM/?vd_source=83bce1401008f7ee3c485dbbb91cd4c3)
- [橙单代码生成后端详解](https://www.bilibili.com/video/BV12Rq2YGEnp/?vd_source=83bce1401008f7ee3c485dbbb91cd4c3)
- [橙单多租户架构技术分享](https://www.bilibili.com/video/BV1aZ421g7Zh/?vd_source=83bce1401008f7ee3c485dbbb91cd4c3)
### 图和真相
@@ -26,14 +26,14 @@
|---|---|
|![](images/autoFlowDingding2.png)|![](images/image-dingding.png)|
|![](images/online-edit.png)|![](images/report-edit.png)|
|![](images/print_edit.png)|![](images/tenant-adminimage.png)|
|![](images/tenant-busiimage.png)|![](images/visualization-new.png)|
|![](images/print_edit.png)|![](images/hiprint.png)|
|![](images/tenant-adminimage.png)|![](images/visualization-new.png)|
### 联系我们
- 如橙单开源对您确有帮助,希望得到您的 Star让更多同行知道我们的存在。
- 如需更多支持,请扫左侧二维码加我微信,邀您群,扫右侧二维码可直接入群。
- 如需更多支持,请扫左侧二维码加我微信,邀您加入技术交流活跃的微信群,扫右侧二维码进入新群。
|![](images/OrangeL.png)|![](images/wechatgroup5.png)|
|![](images/OrangeL.png)|![](images/OrangeL.png)|
|---|---|
### 诚挚推荐

BIN
images/hiprint.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 498 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 466 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 473 KiB

BIN
images/wechatgroup7.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 455 KiB