Upgrade eBPF-for-Windows.x64 to 1.0.0-rc1#240
Open
Alan-Jowett wants to merge 1 commit intomicrosoft:mainfrom
Open
Upgrade eBPF-for-Windows.x64 to 1.0.0-rc1#240Alan-Jowett wants to merge 1 commit intomicrosoft:mainfrom
Alan-Jowett wants to merge 1 commit intomicrosoft:mainfrom
Conversation
Fixes microsoft#239 The previous version (0.21.1) was causing build failures due to a missing spec/ebpf_base.h header file. The new 1.0.0-rc1 release does not have this issue. Signed-off-by: Alan Jowett <alan.jowett@microsoft.com>
There was a problem hiding this comment.
Pull request overview
This PR upgrades the eBPF-for-Windows.x64 NuGet package from v0.21.1 to v1.0.0-rc1 to resolve a critical Windows build failure caused by a missing header file (spec/ebpf_base.h) in the v0.21.1 package.
Changes:
- Updated eBPF-for-Windows.x64 NuGet package version from 0.21.1 to 1.0.0-rc1
- Added -PreRelease flag to the NuGet install command to support installing the release candidate version
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
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
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.
Summary
Upgrades the eBPF-for-Windows.x64 NuGet package from v0.21.1 to v1.0.0-rc1.
Problem
The CI/CD pipeline was failing on Windows builds with:
\
error C1083: Cannot open include file: 'spec/ebpf_base.h': No such file or directory
\\
This was caused by the v0.21.1 package having an issue with a missing header file.
Solution
Upgrade to the latest pre-release version (1.0.0-rc1) which does not have this issue.
Testing
Fixes #239