-
Notifications
You must be signed in to change notification settings - Fork 44
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
convert CI agent provisioning scripts to manifests (#566)
* convert CI agent provisioning scripts to manifests * actually validate agent config in CI * escape^2 * try again * unchange wil? * further changes * try doing the verifier quotes a different way * double down on quotes * double quotes again
- Loading branch information
Showing
6 changed files
with
94 additions
and
85 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,28 @@ | ||
{ | ||
"artifacts": [ | ||
{ | ||
"name": "windows-gitinstall", | ||
"parameters": { | ||
"SetCredHelper": "false" | ||
} | ||
}, | ||
{ | ||
"name": "windows-bcdedit-testsigning", | ||
"parameters": { | ||
"TestSigningOption": "On" | ||
} | ||
}, | ||
{ | ||
"name": "windows-powershell-invokecommand", | ||
"parameters": { | ||
"Script": "verifier.exe /standard /driver xdp.sys fnmp.sys fnlwf.sys ndis.sys ebpfcore.sys; exit 0; <# Enable verifier on XDP-related drivers. Mask the verifier.exe non-zero exit code. #>" | ||
} | ||
}, | ||
{ | ||
"name": "windows-powershell-invokecommand", | ||
"parameters": { | ||
"Script": "reg.exe add HKLM`\\System`\\CurrentControlSet`\\Control`\\CrashControl /v CrashDumpEnabled /d 1 /t REG_DWORD /f; <# Enable complete system crash dumps. #>" | ||
} | ||
} | ||
] | ||
} |
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,40 @@ | ||
{ | ||
"artifacts": [ | ||
{ | ||
"name": "windows-gitinstall", | ||
"parameters": { | ||
"SetCredHelper": "false" | ||
} | ||
}, | ||
{ | ||
"name": "windows-bcdedit-testsigning", | ||
"parameters": { | ||
"TestSigningOption": "On" | ||
} | ||
}, | ||
{ | ||
"name": "windows-powershell-invokecommand", | ||
"parameters": { | ||
"Script": "verifier.exe /standard /faults 599 \"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\" \"\"\"\"\"\"\"\"\"\"\"\"\"\"\"\" 1 /driver xdp.sys ebpfcore.sys; exit 0; <# Failure probability (599/10000 = 5.99%). If left to the default value, roughly every 5 minutes verifier will fail all allocations within a 10 interval. This behavior complicates the spinxsk socket setup statistics. Setting it to a non-default value disables this behavior. 1 - Delay (in minutes) after boot until simulation engages. This is the lowest value configurable via verifier.exe. Mask the verifier.exe non-zero exit code. #>" | ||
} | ||
}, | ||
{ | ||
"name": "windows-powershell-invokecommand", | ||
"parameters": { | ||
"Script": "reg.exe add HKLM`\\SYSTEM`\\CurrentControlSet`\\Services`\\netbt /v Start /d 4 /t REG_DWORD /f; <# Disable TDX and its dependent service NetBT. These drivers are implicated in some NDIS control path hangs. #>" | ||
} | ||
}, | ||
{ | ||
"name": "windows-powershell-invokecommand", | ||
"parameters": { | ||
"Script": "reg.exe add HKLM`\\SYSTEM`\\CurrentControlSet`\\Services`\\tdx /v Start /d 4 /t REG_DWORD /f; <# Disable TDX and its dependent service NetBT. These drivers are implicated in some NDIS control path hangs. #>" | ||
} | ||
}, | ||
{ | ||
"name": "windows-powershell-invokecommand", | ||
"parameters": { | ||
"Script": "reg.exe add HKLM`\\System`\\CurrentControlSet`\\Control`\\CrashControl /v CrashDumpEnabled /d 1 /t REG_DWORD /f; <# Enable complete system crash dumps. #>" | ||
} | ||
} | ||
] | ||
} |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
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