mirror of
https://gitee.com/orangeform/orange-admin.git
synced 2026-01-17 02:26:28 +08:00
Compare commits
10 Commits
670fd2561e
...
master
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
c8a9508b89 | ||
|
|
6b2e2e48bd | ||
|
|
8c7c53b953 | ||
|
|
96597cce04 | ||
|
|
2af76cac58 | ||
|
|
e89291993a | ||
|
|
52c8e206a6 | ||
|
|
b6d22f0989 | ||
|
|
5aaf67ea44 | ||
|
|
a986a1ae6f |
53
.workflow/branch-pipeline.yml
Normal file
53
.workflow/branch-pipeline.yml
Normal 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:
|
||||
- .*
|
||||
44
.workflow/master-pipeline.yml
Normal file
44
.workflow/master-pipeline.yml
Normal 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
|
||||
24
.workflow/pipeline-20250723.yml
Normal file
24
.workflow/pipeline-20250723.yml
Normal 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
40
.workflow/pr-pipeline.yml
Normal 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
|
||||
14
README.md
14
README.md
@@ -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 @@
|
||||
|---|---|
|
||||
|||
|
||||
|||
|
||||
|||
|
||||
|||
|
||||
|||
|
||||
|||
|
||||
|
||||
### 联系我们
|
||||
- 如橙单开源对您确有帮助,希望得到您的 Star,让更多同行知道我们的存在。
|
||||
- 如需更多支持,请扫左侧二维码加我微信,邀您加入技术交流活跃的微信群,或扫右侧二维码进入新群。
|
||||
|
||||
|||
|
||||
|||
|
||||
|---|---|
|
||||
|
||||
### 诚挚推荐
|
||||
|
||||
BIN
images/hiprint.png
Normal file
BIN
images/hiprint.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 498 KiB |
Binary file not shown.
|
Before Width: | Height: | Size: 476 KiB |
BIN
images/wechatgroup7.png
Normal file
BIN
images/wechatgroup7.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 455 KiB |
Reference in New Issue
Block a user