forked from Lichtblick-Suite/asam-osi-converter
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(CI/CD): automate changelog creation and update (Lichtblick-Suite#18
) * Automate changelog file update on release using github actions workflows * Add release instructions to README.me * Reset changelog.md * Add pre-commit hook fo Conventional Commits doc(example-data): Create README.md for example data (Lichtblick-Suite#20) * Create README.md for example data * delete outdated example * add OpenPASS as optional simulator --------- Signed-off-by: Carlo van Driesten <carlo.van-driesten@bmw.de> ci(release): remove trigger on PRs from workflow (Lichtblick-Suite#21) Ci(fix): release pipeline (Lichtblick-Suite#23) * ci(release): swap direct push on main with a PR * ci(release): add PAT to main push operation Update README.md * add requirement to sign a tag to readme Signed-off-by: Carlo van Driesten <carlo.van-driesten@bmw.de> ci(release): attach changelog to release instead of committing to main (Lichtblick-Suite#24) * ci(release): attach changelog to release instead of committing to main * ci(release): add PR creation job fix(ci): release pipeline fix (Lichtblick-Suite#25) * update to node 18 * remove create pull request for now --------- Signed-off-by: Carlo van Driesten <carlo.van-driesten@bmw.de> Co-authored-by: Carlo van Driesten <carlo.van-driesten@bmw.de> ci: add initial commit history to workflow|bump version to 0.0.2 (Lichtblick-Suite#26) ci(release): update workflow (Lichtblick-Suite#27) Ci release pipeline fix (Lichtblick-Suite#28) * ci(release): use env variables instead of set-output * ci(release): update release Ci release pipeline fix (Lichtblick-Suite#29) * ci(release): use env variables instead of set-output * ci(release): update release * ci(release): add line seperations to initial commit history in changelog Ci release pipeline fix (Lichtblick-Suite#30) * ci(release): use env variables instead of set-output * ci(release): update release * ci(release): fix pipeline workflow ci: adapt pipeline workflow (Lichtblick-Suite#31) ci(release): add initial commit history fetch job to pipeline (Lichtblick-Suite#32) Ci create pr to update changelog file (Lichtblick-Suite#33) * ci(release): add PR creation step to update changelog file * chore(package): bump version to v0.0.3 ci(release): update PR commit message (Lichtblick-Suite#34) ci(release): remove uppercase start from commit message (Lichtblick-Suite#35) ci(release): add PAT to PR creation step (Lichtblick-Suite#36) ci(release): handle staging with create-pull-request action (Lichtblick-Suite#40) ci(release): add commit step to update-changelog branch (Lichtblick-Suite#42) ci(release): add branch pull action before commit (Lichtblick-Suite#43) ci(release): force changes in changelog commit (Lichtblick-Suite#44) ci(release): specifiy pull reconcilation (Lichtblick-Suite#45) ci(release): add changes stashing before and after pull (Lichtblick-Suite#46) Ci create pr to update changelog file (Lichtblick-Suite#47) * ci(release): update workflow * ci(release): add delete branch option ci(release): update workflow (Lichtblick-Suite#49) ci(release): update workflow (Lichtblick-Suite#50) ci(release): update workflow (Lichtblick-Suite#52) ci(release): update workflow (Lichtblick-Suite#53) ci(release): split jobs (Lichtblick-Suite#54) ci(release): preserve state across jobs (Lichtblick-Suite#56) ci(release): update workflow (Lichtblick-Suite#57) ci(release): update workflow (#1) ci(release): update pipeline ci(release): update pipeline
- Loading branch information
1 parent
aa2c414
commit 6d2aaac
Showing
12 changed files
with
15,106 additions
and
817 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
npx --no-install commitlint --edit "$1" |
Empty file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1 @@ | ||
# ASAM OSI Converter version history | ||
|
||
## 0.0.1 | ||
|
||
- Initial release |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
module.exports = { | ||
extends: ["@commitlint/config-conventional"], | ||
rules: { | ||
"header-max-length": [2, "always", 72], | ||
}, | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
# Create ASAM OSI MCAP files | ||
|
||
The [multi trace format definition](https://github.com/OpenSimulationInterface/open-simulation-interface/pull/841) is implemented in the [ASAM OSI Utilities](https://github.com/Lichtblick-Suite/asam-osi-utilities/tree/main/examples) where you can use the `convert_osi2mcap` example to convert a standard compliant `.osi` trace to an mcap trace. | ||
You can use e.g. esmini to create `.osi` trace files. | ||
Take a look at the [OpenMSL actions](https://github.com/openMSL/sl-1-0-sensor-model-repository-template/tree/main/test/integration/003_output_osi_fields) how to run a complete co-simulation. | ||
|
||
Another option to create traces is the OpenPASS [gt-gen-simlator](https://gitlab.eclipse.org/eclipse/openpass/gt-gen-simulator). | ||
|
||
## Example traces | ||
|
||
tbd |
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
Initial commit | ||
|
||
Update LICENSE | ||
|
||
Update README | ||
|
||
Create CODEOWNERS | ||
|
||
Jest configuration and initial unit tests | ||
|
||
Implement TrafficSigns | ||
|
||
Improve logic to prevent TrafficSign rerender | ||
|
||
Synchronize OSI extension code | ||
|
||
Fix trafficsign category modelCache | ||
|
||
Traffic Lights Implementation | ||
|
||
Create release with artifact on new tag (#3) | ||
|
||
Integrate ASAM OSI as Dependency for OSI Ground Truth Extension (#5) | ||
|
||
Remove old unneeded manually created types (#9) | ||
|
||
Migrate from npm to yarn (#10) | ||
|
||
Install @lichtblick/asam-osi-types npm package and update imports. (#16) |
Oops, something went wrong.