-
Notifications
You must be signed in to change notification settings - Fork 241
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' into gtrevi/reg-api
- Loading branch information
Showing
36 changed files
with
3,196 additions
and
2,582 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,43 @@ | ||
# Copyright (c) Microsoft Corporation | ||
# SPDX-License-Identifier: MIT | ||
|
||
# This workflow is triggered on the first day of every month, and creates an issue for releasing eBPF for Windows. | ||
|
||
name: Release scheduler | ||
on: | ||
schedule: | ||
- cron: 0 0 1 * * | ||
|
||
jobs: | ||
create_release_issue: | ||
name: Create release task | ||
runs-on: ubuntu-latest | ||
permissions: | ||
issues: write | ||
steps: | ||
- name: Create release task | ||
uses: actions/github-script@d7906e4ad0b1822421a7e6a35d5ca353c962f410 | ||
env: | ||
TITLE: Scheduled eBPF release is due | ||
LABELS: release | ||
BODY: | | ||
This is an automated reminder that a new release for eBPF is scheduled to be created: | ||
1. Follow instructions in [ReleaseProcess.md](https://github.com/microsoft/ebpf-for-windows/blob/main/docs/ReleaseProcess.md). | ||
1. Sync the internal `mscodehub` and follow the internal release instructions in `\.internal\docs\ReleaseEbpfRedistProcess.md`. | ||
with: | ||
script: | | ||
const owner = process.env.GITHUB_REPOSITORY.split('/')[0] | ||
const repo = process.env.GITHUB_REPOSITORY.split('/')[1] | ||
const body = process.env.BODY; | ||
const title = process.env.TITLE; | ||
const labels = process.env.LABELS; | ||
const label_array = labels ? labels.split(',') : []; | ||
console.log(`Creating issue ${title}`); | ||
await github.rest.issues.create({ | ||
owner: owner, | ||
repo: repo, | ||
title: title, | ||
body: body, | ||
labels: label_array, | ||
}); |
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
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
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
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
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
Submodule ubpf
updated
9 files
+124 −1 | .github/workflows/main.yml | |
+9 −4 | .github/workflows/posix.yml | |
+7 −2 | .github/workflows/windows.yml | |
+3 −0 | cmake/options.cmake | |
+2 −2 | cmake/settings.cmake | |
+1 −1 | external/bpf_conformance | |
+2 −1 | vm/ubpf_config.h.inc | |
+77 −8 | vm/ubpf_jit_x86_64.c | |
+32 −11 | vm/ubpf_jit_x86_64.h |
Submodule usersim
updated
24 files
+10 −0 | .github/CODEOWNERS | |
+1 −0 | CMakeLists.txt | |
+5 −4 | README.md | |
+0 −28 | inc/ntddk.h | |
+18 −0 | inc/usersim/rtl.h | |
+0 −114 | inc/wdf.h | |
+4 −2 | sample/CMakeLists.txt | |
+9 −7 | sample/sample.vcxproj | |
+3 −0 | src/CMakeLists.txt | |
+0 −0 | src/ndis.h | |
+2 −0 | src/platform_user.cpp | |
+24 −0 | src/rtl.cpp | |
+3 −4 | src/usersim.vcxproj | |
+3 −6 | src/usersim.vcxproj.filters | |
+36 −5 | src/wdf.cpp | |
+29 −0 | src/wdf.h | |
+1 −1 | tests/nmr_test.cpp | |
+14 −0 | tests/rtl_test.cpp | |
+26 −0 | usersim.sln | |
+6 −0 | usersim_dll_skeleton/CMakeLists.txt | |
+63 −0 | usersim_dll_skeleton/dll_skeleton.c | |
+67 −0 | usersim_dll_skeleton/dll_skeleton.h | |
+146 −0 | usersim_dll_skeleton/usersim_dll_skeleton.vcxproj | |
+27 −0 | usersim_dll_skeleton/usersim_dll_skeleton.vcxproj.filters |
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
Oops, something went wrong.