-
Notifications
You must be signed in to change notification settings - Fork 138
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
Fix Windows CI build #54
Merged
Merged
Conversation
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
@cmumford PTAL? |
The Windows SDK versions present on our CI options (GitHub Actions hosted runners, AppVeyor) have headers that cause compilation warnings when included with MSVC operating in modern C modes (C11+). This PR disables the compilation warning caused by the Windows SDK headers, so we can get Windows feedback from CI. The warnings can be re-enabled when the Windows SDK used by our CI is upgraded to a version that doesn't trigger warnings.
@cmumford I updated this PR to clarify that we still need it for Github Actions. PTAL? |
cmumford
approved these changes
Sep 1, 2021
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.
LGTM
Thank you very much for the quick review! |
swtrse
added a commit
to muecoin/crc32c-subtree
that referenced
this pull request
Sep 24, 2021
commit b9d6e82 Author: Victor Costan <costan@google.com> Date: Wed Sep 1 09:19:47 2021 -0700 Fix Windows CI build. (google#54) The Windows SDK versions present on our CI options (GitHub Actions hosted runners, AppVeyor) have headers that cause compilation warnings when included with MSVC operating in modern C modes (C11+). This PR disables the compilation warning caused by the Windows SDK headers, so we can get Windows feedback from CI. The warnings can be re-enabled when the Windows SDK used by our CI is upgraded to a version that doesn't trigger warnings. commit bbbb93a Author: Victor Costan <costan@google.com> Date: Wed Sep 1 09:17:07 2021 -0700 Switch CI to GitHub Actions (google#55) * Fix Windows CI build. The Windows SDK versions present on our CI options (GitHub Actions hosted runners, AppVeyor) have headers that cause compilation warnings when included with MSVC operating in modern C modes (C11+). This PR disables the compilation warning caused by the Windows SDK headers, so we can get Windows feedback from CI. The warnings can be re-enabled when the Windows SDK used by our CI is upgraded to a version that doesn't trigger warnings. * Switch CI to GitHub Actions. commit d46cd17 Author: Victor Costan <pwnall@chromium.org> Date: Mon Aug 30 19:11:12 2021 -0700 Add clangd cache directory to .gitignore. commit fa5ade4 Author: Victor Costan <costan@google.com> Date: Tue Jun 22 14:30:59 2021 -0700 Fix compilation warnings on ARM64 with old GCC versions. (google#52) Tested on Chrome OS M93 Linux (Debian 10.10) on kukui. commit db08d22 Author: Chris Mumford <cmumford@cmumford.com> Date: Sun Jun 20 08:18:01 2021 -0700 Updated Travis-CI configuration. (google#51) clang/llvm: 10 → 12 gcc: 10 → 11 commit e31619a Author: Francois Marier <francois@fmarier.org> Date: Wed Jun 2 12:18:58 2021 -0700 Fix GitHub links. (google#50) These repos have moved to different GitHub user accounts or orgs. commit 7fa4c26 Author: Victor Costan <costan@google.com> Date: Sun Dec 13 22:55:19 2020 -0800 Update Travis CI config. (google#49) commit a3d9e6d Author: Victor Costan <costan@google.com> Date: Sun Dec 13 19:23:42 2020 -0800 Updated third_party/ and Travis CI config. (google#48)
fanquake
added a commit
to bitcoin-core/crc32c-subtree
that referenced
this pull request
Aug 30, 2024
21fc8ef Fix typo (google#59) (Dimitris Apostolou) 89f6984 Fix misspelled "Proccess" in comment (Munkybooty) 02e65f4 Bump deps (google#56) (Victor Costan) b9d6e82 Fix Windows CI build. (google#54) (Victor Costan) bbbb93a Switch CI to GitHub Actions (google#55) (Victor Costan) d46cd17 Add clangd cache directory to .gitignore. (Victor Costan) Pull request description: Pulls the few changes from upstream (last commit ~ 2 years ago). Seems reasonable to do before making any other changes. i.e #7, or if we are going to make further changes to the CMake build system etc. Top commit has no ACKs. Tree-SHA512: ca1cd5a085584d6a4ae65c5d83ae80db7bdd9ab251dc56fa899787dfa0b6fe0a60d32e89b5af5d066fa925a7120f02749aaa854e013f35c442f37a37a30caf23
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
The Windows SDK versions present on our CI options (GitHub Actions hosted runners, AppVeyor) have headers that cause compilation warnings when included with MSVC operating in modern C modes (C11+).
This PR disables the compilation warning caused by the Windows SDK headers, so we can get Windows feedback from CI. The warnings can be re-enabled when the Windows SDK used by our CI is upgraded to a version that doesn't trigger warnings.