-
Notifications
You must be signed in to change notification settings - Fork 2
Move to GitFlow strategy [ci patch inc] #8
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from all commits
Commits
Show all changes
3 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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 hidden or 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,58 @@ | ||
| name: HyperCPU CI/CD Pipeline (version incrementing) | ||
|
|
||
| on: | ||
| push: | ||
| branches: | ||
| - master | ||
|
|
||
| jobs: | ||
| versioning-patch-increment: | ||
| runs-on: self-hosted | ||
| if: "contains(github.event.head_commit.message, '[ci patch inc]')" | ||
| permissions: | ||
| contents: write | ||
|
|
||
| steps: | ||
| - name: Checkout code | ||
| uses: actions/checkout@v4 | ||
| with: | ||
| fetch-depth: '0' | ||
|
|
||
| - name: Setup git user | ||
| uses: fregante/setup-git-user@v1 | ||
|
|
||
| - name: Increment version | ||
| run: | | ||
| scripts/increment_patch.sh | ||
|
|
||
| - name: Push changes to master branch | ||
| run: | | ||
| git add . | ||
| git commit -m "[auto]: Increment patch version" | ||
| git push origin master | ||
|
|
||
| versioning-minor-increment: | ||
| runs-on: self-hosted | ||
| if: "contains(github.event.head_commit.message, '[ci minor inc]')" | ||
| permissions: | ||
| contents: write | ||
|
|
||
| steps: | ||
| - name: Checkout code | ||
| uses: actions/checkout@v4 | ||
| with: | ||
| fetch-depth: '0' | ||
|
|
||
| - name: Setup git user | ||
| uses: fregante/setup-git-user@v1 | ||
Check warningCode scanning / CodeQL Unpinned tag for a non-immutable Action in workflow Medium
Unpinned 3rd party Action 'HyperCPU CI/CD Pipeline (version incrementing)' step
Uses Step Error loading related location Loading |
||
|
|
||
| - name: Increment version | ||
| run: | | ||
| scripts/increment_minor.sh | ||
|
|
||
| - name: Push changes to master branch | ||
| run: | | ||
| git add . | ||
| git commit -m "[auto]: Increment minor version" | ||
| git push origin master | ||
|
|
||
Submodule benchmark
updated
12 files
| +1 −1 | CMakeLists.txt | |
| +1 −1 | MODULE.bazel | |
| +1 −1 | bindings/python/google_benchmark/__init__.py | |
| +0 −40 | docs/user_guide.md | |
| +10 −26 | include/benchmark/benchmark.h | |
| +0 −3 | src/benchmark_api_internal.h | |
| +0 −5 | src/benchmark_register.cc | |
| +20 −39 | src/benchmark_runner.cc | |
| +1 −2 | src/benchmark_runner.h | |
| +21 −3 | src/thread_manager.h | |
| +0 −3 | test/CMakeLists.txt | |
| +0 −174 | test/manual_threading_test.cc |
Submodule googletest
updated
47 files
Submodule pog
updated
from d62f0d to d2673b
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Check warning
Code scanning / CodeQL
Unpinned tag for a non-immutable Action in workflow Medium