-
Notifications
You must be signed in to change notification settings - Fork 99
MINIFICPP-2757 Build windows artifacts in create-release-artifacts CI #2145
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
base: main
Are you sure you want to change the base?
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -138,10 +138,10 @@ bool SFTPTestServer::stop() { | |
| logger_->log_debug("Deleting port file {}", port_file_path_); | ||
| ::unlink(port_file_path_.c_str()); | ||
| } | ||
| #endif | ||
| server_pid_ = -1; | ||
|
Member
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. this is the bugfix part it failed to compiled because server_pid_ is not declared on windows, since we already throw I've moved the endif a bit
Member
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. It still has compile issues. I've checked and we dont enable SFTP on windows CI job, and locally it skips the tests if java or maven is missing, thats why it could fly under our radar. Since this would require a bigger effort, this is not the PR to fix these I've created a new jira for this effort, and disabled tests for this job (we dont run tests anyway in these jobs so it makes sense to skip them here) |
||
| started_ = false; | ||
| port_file_path_ = ""; | ||
| #endif | ||
martinzink marked this conversation as resolved.
Show resolved
Hide resolved
|
||
| return true; | ||
| } | ||
|
|
||
|
|
||
Uh oh!
There was an error while loading. Please reload this page.