-
Notifications
You must be signed in to change notification settings - Fork 21
try a windows build #33
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
42 commits
Select commit
Hold shift + click to select a range
4a7d596
try a windows build
kevinkreiser 79eb865
try another target
kevinkreiser db7debd
leave out the build options
kevinkreiser 8c85eee
Update win.yml
kevinkreiser 5a6fa2b
Initial Hunterization
rbsheth f153eee
Windows fixes
rbsheth ebce2a8
Include fixup
rbsheth 5518121
test fixes
rbsheth beadc09
add ifdefs to mock server
kevinkreiser 800fcfc
Merge remote-tracking branch 'origin/kk_windows' into kk_windows
kevinkreiser f85c3b8
resolve conflicts
kevinkreiser 652c002
build within the build dir
kevinkreiser 3d029e2
coverage is disabled by default
kevinkreiser b31d729
Merge remote-tracking branch 'origin/master' into kk_windows
kevinkreiser 2b74325
Update .github/workflows/win.yml
kevinkreiser 29e9efb
Update .github/workflows/win.yml
kevinkreiser a38092c
Update .github/workflows/win.yml
kevinkreiser 6fcc092
Update .github/workflows/win.yml
kevinkreiser ff215d6
Update .github/workflows/win.yml
kevinkreiser 74889d3
Update .github/workflows/win.yml
kevinkreiser 0483d3c
set warning flags differently for msvc
kevinkreiser a0c0695
try suppressing the warnings from external includes
kevinkreiser e625203
fix some warnings in test server
kevinkreiser 17db245
undefine windows built in min/max macros
kevinkreiser ab42b13
no more warnings in test server
kevinkreiser 8b86d46
move all socket defines and operations to udpsender and use from there
kevinkreiser 295026f
avoid thread safety issues and annoyingly complex strerror
kevinkreiser 63c6370
try removing more warnings and also lower the warning level to ignore…
kevinkreiser 342336b
remove final warning
kevinkreiser 7834b8e
revert hunter for now, make library easier to vendor, print exact tes…
kevinkreiser 50d0ea9
try for more output in CI
kevinkreiser 1337817
try more more output
kevinkreiser 193065c
just want to see programs output..
kevinkreiser 2998b4a
more logging of failure info
kevinkreiser 28ea211
check if the test server binds properly
kevinkreiser fa1f68e
debugging windows socket recv
kevinkreiser 312cc14
get the error number
kevinkreiser c15f5d2
check binding as well
kevinkreiser 1e5a738
get tests working on windows build
kevinkreiser 58456a4
clean up pr for review
kevinkreiser 21a9767
disable the options if not standalone mode
kevinkreiser b1ea596
didnt need to fix this warning
kevinkreiser 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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,18 @@ | ||
| name: Windows | ||
|
|
||
| on: [push, pull_request] | ||
| jobs: | ||
| windows: | ||
| runs-on: windows-latest | ||
| steps: | ||
| - uses: actions/checkout@v2 | ||
| - name: dependencies | ||
| run: | | ||
| choco install cmake | ||
| - name: build | ||
| run: | | ||
| cmake -S . -B build -G "Visual Studio 16 2019" -A x64 | ||
| cmake --build build --target ALL_BUILD --config Release | ||
| - name: test | ||
| run: | | ||
| cmake --build build --target RUN_TESTS --config Release |
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,18 @@ | ||
| # Copyright (c) 2016, Ruslan Baratov | ||
| # | ||
| # Licensed under the MIT License (the "License"); you may not use this file except | ||
| # in compliance with the License. You may obtain a copy of the License at | ||
| # | ||
| # http://opensource.org/licenses/MIT | ||
| # | ||
| # Unless required by applicable law or agreed to in writing, software distributed | ||
| # under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR | ||
| # CONDITIONS OF ANY KIND, either express or implied. See the License for the | ||
| # specific language governing permissions and limitations under the License. | ||
|
|
||
| @PACKAGE_INIT@ | ||
|
|
||
| find_package(Threads REQUIRED) | ||
|
|
||
| include("${CMAKE_CURRENT_LIST_DIR}/@TARGETS_EXPORT_NAME@.cmake") | ||
| check_required_components("@PROJECT_NAME@") |
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
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.
Uh oh!
There was an error while loading. Please reload this page.