-
Notifications
You must be signed in to change notification settings - Fork 133
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
test windows build #504
test windows build #504
Conversation
94a6cdc
to
c24fc6d
Compare
Codecov Report
@@ Coverage Diff @@
## 2.x #504 +/- ##
=============================================
- Coverage 78.17% 66.88% -11.30%
+ Complexity 864 769 -95
=============================================
Files 86 86
Lines 3267 3267
Branches 309 309
=============================================
- Hits 2554 2185 -369
- Misses 573 975 +402
+ Partials 140 107 -33
Flags with carried forward coverage won't be shown. Click here to find out more.
Help us with your feedback. Take ten seconds to tell us how you rate us. Have a feature suggestion? Share it here. |
Signed-off-by: Yaliang Wu <ylwu@amazon.com>
441420c
to
a7ba462
Compare
No clear idea to solve the fail to clean up local temp file error. Merge this PR to unblock windows build, create an issue to track it #505 |
Signed-off-by: Yaliang Wu <ylwu@amazon.com> Signed-off-by: Yaliang Wu <ylwu@amazon.com> Signed-off-by: Sicheng Song <114637679+b4sjoo@users.noreply.github.com>
Signed-off-by: Yaliang Wu <ylwu@amazon.com> Signed-off-by: Yaliang Wu <ylwu@amazon.com> Signed-off-by: Sicheng Song <114637679+b4sjoo@users.noreply.github.com> Signed-off-by: Yaliang Wu <ylwu@amazon.com> Signed-off-by: Sicheng Song <114637679+b4sjoo@users.noreply.github.com> Co-authored-by: Yaliang Wu <ylwu@amazon.com>
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-504-to-1.3
# Cherry-pick the merged commit of this pull request and resolve the conflicts
git cherry-pick -x --mainline 1 9ebd2e6fad884829781342a79157a9eba9ca5a47
# Push it to GitHub
git push --set-upstream origin backport/backport-504-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 |
Signed-off-by: Yaliang Wu ylwu@amazon.com
Description
Found several issues when run on windows
CustomModelITTests#testCustomModelWorkflow
will fail to clean up local file cache. Test code run successfully, but test framework failed to cleanup temp local files.RestMLCustomModelActionIT#testCustomModelWorkflow
can run successfully on test windows EC2 by running./gradlew.bat build
, but it's flaky on GIthub CI runner node. So I have to ignore this.Issues Resolved
[List any issues this PR will resolve]
Check List
By submitting this pull request, I confirm that my contribution is made under the terms of the Apache 2.0 license.
For more information on following Developer Certificate of Origin and signing off your commits, please check here.