-
Notifications
You must be signed in to change notification settings - Fork 1
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
132 automatically generate c code #133
Merged
Merged
Changes from 8 commits
Commits
Show all changes
14 commits
Select commit
Hold shift + click to select a range
256e369
enhancement #132: adding windows CI
FabienDanieau 1a79df7
enhancement #132: fix version of windows and vs studio
FabienDanieau fdb3aec
enhancement #132: restore nuget package before compiling
FabienDanieau 93c0876
enhancement #132: test change in proto
FabienDanieau 04adc1c
Generated Protobuf C# Code
github-actions[bot] 1c5f72c
enhancement #132: remove dummy test. update readme
FabienDanieau 8fe341b
Merge branch '132-automatically-generate-c-code' of https://github.co…
FabienDanieau 5671874
Generated Protobuf C# Code
github-actions[bot] 65715d8
Merge branch 'develop' into 132-automatically-generate-c-code
FabienDanieau 4e13d47
enhancement #132: combine the two generate jobs to avoid conflict
FabienDanieau 8f17c1e
enhancement #132: improve readme
FabienDanieau 8e36f54
Generated Protobuf C# Code
github-actions[bot] ad85efc
enhancmeent #132: updating version of actions: checkout and python
FabienDanieau 7bb0f4d
Merge branch '132-automatically-generate-c-code' of https://github.co…
FabienDanieau 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 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,31 @@ | ||
|
||
name: Generate Protobuf C# Code | ||
|
||
on: [push] | ||
|
||
jobs: | ||
build: | ||
runs-on: windows-2022 | ||
|
||
steps: | ||
- name: Checkout code | ||
uses: actions/checkout@v3 | ||
|
||
- name: Setup MSBuild | ||
uses: microsoft/setup-msbuild@v2 | ||
with: | ||
vs-version: '[17.10,17.11)' | ||
|
||
- name: Restore NuGet packages | ||
run: nuget restore 'csharp/reachy_sdk/reachy_sdk.sln' | ||
|
||
- name: Build solution | ||
run: msbuild 'csharp\reachy_sdk\reachy_sdk.sln' /p:Configuration=Release | ||
|
||
- name: Commit and push changes | ||
run: | | ||
git config --global user.name 'github-actions[bot]' | ||
git config --global user.email 'github-actions[bot]@users.noreply.github.com' | ||
git add . | ||
git commit -m "Generated Protobuf C# Code" || echo "No changes to commit" | ||
git push |
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
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.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I guess there is a typo in this Readme