added doc for creating artifacts
This commit is contained in:
parent
d8396402b5
commit
cea54b0945
2 changed files with 103 additions and 21 deletions
|
@ -205,8 +205,3 @@ For more details about our repository model see: https://repo.prod.meissa.de/mei
|
||||||
|
|
||||||
Copyright © 2021 meissa GmbH
|
Copyright © 2021 meissa GmbH
|
||||||
Licensed under the [Apache License, Version 2.0](LICENSE) (the "License")
|
Licensed under the [Apache License, Version 2.0](LICENSE) (the "License")
|
||||||
|
|
||||||
## License
|
|
||||||
|
|
||||||
Copyright © 2023 meissa GmbH
|
|
||||||
Licensed under the [Apache License, Version 2.0](LICENSE) (the "License")
|
|
||||||
|
|
|
@ -1,5 +1,15 @@
|
||||||
# ReleaseMixin
|
# ReleaseMixin
|
||||||
|
|
||||||
|
- [ReleaseMixin](#releasemixin)
|
||||||
|
- [Input](#input)
|
||||||
|
- [Example Usage just for creating releases](#example-usage-just-for-creating-releases)
|
||||||
|
- [build.py](#buildpy)
|
||||||
|
- [call the build for creating a major release](#call-the-build-for-creating-a-major-release)
|
||||||
|
- [Example Usage for creating a release on forgejo / gitea \& upload the generated artifacts](#example-usage-for-creating-a-release-on-forgejo--gitea--upload-the-generated-artifacts)
|
||||||
|
- [build.py](#buildpy-1)
|
||||||
|
- [call the build](#call-the-build)
|
||||||
|
|
||||||
|
|
||||||
Support for releases following the trunk-based-release flow (see https://trunkbaseddevelopment.com/)
|
Support for releases following the trunk-based-release flow (see https://trunkbaseddevelopment.com/)
|
||||||
|
|
||||||
```mermaid
|
```mermaid
|
||||||
|
@ -20,8 +30,12 @@ classDiagram
|
||||||
| release_main_branch | the name of your trank | "main" |
|
| release_main_branch | the name of your trank | "main" |
|
||||||
| release_primary_build_file | path to the build file having the leading version info (read & write). Valid extensions are .clj, .json, .gradle, .py | "./project.clj" |
|
| release_primary_build_file | path to the build file having the leading version info (read & write). Valid extensions are .clj, .json, .gradle, .py | "./project.clj" |
|
||||||
| release_secondary_build_files | list of secondary build files, version is written in. | [] |
|
| release_secondary_build_files | list of secondary build files, version is written in. | [] |
|
||||||
|
| release_artifact_server_url | Optional: The base url of your forgejo/gitea instance to publish a release tode | |
|
||||||
|
| release_organisation | Optional: The repository organisation name | |
|
||||||
|
| release_repository_name | Optional: The repository name name | |
|
||||||
|
| release_artifacts | Optional: The list of artifacts to publish to the release generated name | [] |
|
||||||
|
|
||||||
## Example Usage
|
## Example Usage just for creating releases
|
||||||
|
|
||||||
### build.py
|
### build.py
|
||||||
|
|
||||||
|
@ -36,7 +50,7 @@ PROJECT_ROOT_PATH = '..'
|
||||||
|
|
||||||
@init
|
@init
|
||||||
def initialize(project):
|
def initialize(project):
|
||||||
project.build_depends_on("ddadevops>=4.0.0")
|
project.build_depends_on("ddadevops>=4.7.0")
|
||||||
|
|
||||||
input = {
|
input = {
|
||||||
"name": name,
|
"name": name,
|
||||||
|
@ -48,35 +62,108 @@ def initialize(project):
|
||||||
"release_type": "MINOR",
|
"release_type": "MINOR",
|
||||||
"release_primary_build_file": "project.clj",
|
"release_primary_build_file": "project.clj",
|
||||||
"release_secondary_build_files": ["package.json"],
|
"release_secondary_build_files": ["package.json"],
|
||||||
}
|
}
|
||||||
|
|
||||||
roject.build_depends_on("ddadevops>=4.0.0-dev")
|
|
||||||
|
|
||||||
build = ReleaseMixin(project, input)
|
build = ReleaseMixin(project, input)
|
||||||
build.initialize_build_dir()
|
build.initialize_build_dir()
|
||||||
|
|
||||||
|
|
||||||
@task
|
@task
|
||||||
def prepare_release(project):
|
def patch(project):
|
||||||
|
linttest(project, "PATCH")
|
||||||
|
release(project)
|
||||||
|
|
||||||
|
|
||||||
|
@task
|
||||||
|
def minor(project):
|
||||||
|
linttest(project, "MINOR")
|
||||||
|
release(project)
|
||||||
|
|
||||||
|
|
||||||
|
@task
|
||||||
|
def major(project):
|
||||||
|
linttest(project, "MAJOR")
|
||||||
|
release(project)
|
||||||
|
|
||||||
|
|
||||||
|
@task
|
||||||
|
def dev(project):
|
||||||
|
linttest(project, "NONE")
|
||||||
|
|
||||||
|
|
||||||
|
@task
|
||||||
|
def prepare(project):
|
||||||
build = get_devops_build(project)
|
build = get_devops_build(project)
|
||||||
build.prepare_release()
|
build.prepare_release()
|
||||||
|
|
||||||
@task
|
|
||||||
def build(project):
|
|
||||||
print("do the build")
|
|
||||||
|
|
||||||
@task
|
@task
|
||||||
def publish(project):
|
def tag(project):
|
||||||
print("publish your artefacts")
|
|
||||||
|
|
||||||
@task
|
|
||||||
def after_publish(project):
|
|
||||||
build = get_devops_build(project)
|
build = get_devops_build(project)
|
||||||
build.tag_bump_and_push_release()
|
build.tag_bump_and_push_release()
|
||||||
|
|
||||||
|
|
||||||
|
def release(project):
|
||||||
|
prepare(project)
|
||||||
|
tag(project)
|
||||||
|
|
||||||
|
|
||||||
|
def linttest(project, release_type):
|
||||||
|
build = get_devops_build(project)
|
||||||
|
build.update_release_type(release_type)
|
||||||
|
#test(project)
|
||||||
|
#lint(project)
|
||||||
|
```
|
||||||
|
|
||||||
|
### call the build for creating a major release
|
||||||
|
|
||||||
|
```bash
|
||||||
|
pyb major
|
||||||
|
```
|
||||||
|
|
||||||
|
## Example Usage for creating a release on forgejo / gitea & upload the generated artifacts
|
||||||
|
|
||||||
|
### build.py
|
||||||
|
|
||||||
|
```python
|
||||||
|
rom os import environ
|
||||||
|
from pybuilder.core import task, init
|
||||||
|
from ddadevops import *
|
||||||
|
|
||||||
|
name = 'my-project'
|
||||||
|
MODULE = 'my-module'
|
||||||
|
PROJECT_ROOT_PATH = '..'
|
||||||
|
|
||||||
|
@init
|
||||||
|
def initialize(project):
|
||||||
|
project.build_depends_on("ddadevops>=4.7.0")
|
||||||
|
|
||||||
|
input = {
|
||||||
|
"name": name,
|
||||||
|
"module": MODULE,
|
||||||
|
"stage": "notused",
|
||||||
|
"project_root_path": PROJECT_ROOT_PATH,
|
||||||
|
"build_types": [],
|
||||||
|
"mixin_types": ["RELEASE"],
|
||||||
|
"release_type": "MINOR",
|
||||||
|
"release_primary_build_file": "project.clj",
|
||||||
|
"release_secondary_build_files": ["package.json"],
|
||||||
|
"release_artifact_server_url": "https://repo.prod.meissa.de",
|
||||||
|
"release_organisation": "meissa",
|
||||||
|
"release_repository_name": "dda-devops-build",
|
||||||
|
"release_artifacts": ["target/doc.zip"],
|
||||||
|
}
|
||||||
|
build = ReleaseMixin(project, input)
|
||||||
|
build.initialize_build_dir()
|
||||||
|
|
||||||
|
@task
|
||||||
|
def publish_artifacts(project):
|
||||||
|
build = get_devops_build(project)
|
||||||
|
build.publish_artifacts()
|
||||||
```
|
```
|
||||||
|
|
||||||
### call the build
|
### call the build
|
||||||
|
|
||||||
```bash
|
```bash
|
||||||
pyb prepare_release build publish after_publish
|
git checkout "4.7.0"
|
||||||
|
pyb publish_artifacts
|
||||||
```
|
```
|
||||||
|
|
Loading…
Reference in a new issue