-
Notifications
You must be signed in to change notification settings - Fork 61
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
[Backport 1.x]Add windows & mac build (#591) #647
Conversation
15c888b
to
6e65227
Compare
Codecov Report
@@ Coverage Diff @@
## 1.x #647 +/- ##
============================================
+ Coverage 73.28% 74.74% +1.46%
- Complexity 984 1001 +17
============================================
Files 141 141
Lines 4566 4566
Branches 507 507
============================================
+ Hits 3346 3413 +67
+ Misses 910 836 -74
- Partials 310 317 +7
Help us with your feedback. Take ten seconds to tell us how you rate us. Have a feature suggestion? Share it here. |
a0ae725
to
eee372c
Compare
Signed-off-by: Ankit Kala <ankikala@amazon.com> Signed-off-by: Ankit Kala <ankikala@amazon.com> (cherry picked from commit d12271a)
eee372c
to
d372b17
Compare
The backport to
To backport manually, run these commands in your terminal: # Fetch latest updates from GitHub
git fetch
# Create a new working tree
git worktree add .worktrees/backport-1.3 1.3
# Navigate to the new working tree
cd .worktrees/backport-1.3
# Create a new branch
git switch --create backport/backport-647-to-1.3
# Cherry-pick the merged commit of this pull request and resolve the conflicts
git cherry-pick -x --mainline 1 229ead061e14e5183394970b48051403fd4904f7
# Push it to GitHub
git push --set-upstream origin backport/backport-647-to-1.3
# Go back to the original working tree
cd ../..
# Delete the working tree
git worktree remove .worktrees/backport-1.3 Then, create a pull request where the |
Backport d12271a from #591