Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
29 commits
Select commit Hold shift + click to select a range
57b3c4c
[simbatt] Remove unused MAX_SUPPORTED_SIMBATT_CHILDREN define
forderud Aug 21, 2024
97b9377
simbatt: Clear BATTERY_CAPACITY_RELATIVE field
Dec 7, 2023
95ca556
Remove unreferenced BATTBUS_TYPE_SIMBATT define.
forderud Aug 22, 2024
673f69a
Remove unreferenced BATTBUS_PLUGIN_HARDWARE struct.
forderud Aug 22, 2024
700a917
Remove unreferenced BATTBUS_UNPLUG_HARDWARE struct.
forderud Aug 22, 2024
c9de412
Remove unreferenced battery bus GUID and IOCTL calls.
forderud Aug 22, 2024
2395668
[simbatt] Delete redundant "batclass_prepublish.h" to simplify
forderud Aug 22, 2024
249c258
Merge pull request #1328 from microsoft/main
5an7y-Microsoft Sep 25, 2025
6798add
Merge pull request #1209 from forderud/batclass_prepublish.h-rm
tristanb-ntdev Oct 9, 2025
832f281
Merge pull request #1208 from forderud/MAX_SUPPORTED_SIMBATT_CHILDREN-rm
tristanb-ntdev Oct 9, 2025
ed3dbe5
Merge pull request #1063 from forderud/simbatt-relative-rm
tristanb-ntdev Oct 9, 2025
77d8f2d
removed the space after newline which seems to be bug in c++ 23 not i…
JakobL-MSFT Feb 5, 2026
21d5686
Merge pull request #1358 from microsoft/main
5an7y-Microsoft Mar 19, 2026
1c9d80c
Add Build-Samples.ps1, ListAllSamples.ps1, fix Build-Sample retry bug
5an7y Mar 19, 2026
15e6a1f
Making the maxbuild bigger on exclusions for testint and adding the b…
5an7y Mar 20, 2026
8e3b051
Remove NuGet packages from samples
5an7y Mar 20, 2026
9cd8d03
Refactor Build-Samples.ps1 and fix ListAllSamples NuGet filter
5an7y Mar 20, 2026
05b65da
removing unused workflow
v-junyli Mar 26, 2026
302d189
Remove Samples.txt: discover samples dynamically via ListAllSamples
5an7y Mar 27, 2026
4d94b8b
Revert exclusions.csv to match main
5an7y Mar 30, 2026
d929507
Remove Build-AllSamples.ps1 and Build-SampleSet.ps1 in favor of Build…
5an7y Mar 30, 2026
bc6b270
Merge Build-Sample.ps1 into Build-Samples.ps1 as internal function
5an7y Mar 30, 2026
83cfa72
Support wildcard patterns in -Samples parameter
5an7y Mar 30, 2026
8056a27
Remove redundant specific-samples example from Building-Locally.md
5an7y Mar 30, 2026
3a2a44a
Merge remote-tracking branch 'origin/develop' into user/jvalesmena/ne…
5an7y Mar 30, 2026
3b06a54
Merge pull request #1363 from microsoft/user/jvalesmena/new-build-sam…
5an7y-Microsoft Mar 31, 2026
78a9b6f
ci: update Code-Scanning workflow to use Build-Samples.ps1
5an7y Mar 31, 2026
e9c56a2
Merge branch 'develop' into user/jvalesmena/new-build-samples
5an7y-Microsoft Mar 31, 2026
21d02d7
update Code-Scanning workflow to use Build-Samples.ps1
5an7y-Microsoft Mar 31, 2026
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 4 additions & 3 deletions .github/scripts/Build-ChangedSamples.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ foreach ($file in $ChangedFiles) {
$filename = Split-Path $file -Leaf

# Files that can affect how every sample is built should trigger a full build
if ($filename -eq "Build-AllSamples.ps1" -or $filename -eq "Build-Sample.ps1" -or $filename -eq "Build-SampleSet.ps1" -or $filename -eq "exclusions.csv" -or $filename -eq "Directory.Build.props" -or $filename -eq "packages.config") {
if ($filename -eq "Build-Samples.ps1" -or $filename -eq "exclusions.csv" -or $filename -eq "Directory.Build.props" -or $filename -eq "packages.config") {
$buildAll = $true
}
if ($dir -like "$root\.github\scripts" -or $dir -like "$root\.github\scripts\*") {
Expand Down Expand Up @@ -52,9 +52,10 @@ foreach ($file in $ChangedFiles) {
}

if ($buildAll) {
.\Build-AllSamples -Verbose:$Verbose -LogFilesDirectory (Join-Path $root "_logs")
.\Build-Samples -Verbose:$Verbose -LogFilesDirectory (Join-Path $root "_logs")
}
else {
.\Build-SampleSet -SampleSet $sampleSet -Verbose:$Verbose -LogFilesDirectory (Join-Path $root "_logs")
$sampleNames = $sampleSet.Keys | Sort-Object
.\Build-Samples -Samples $sampleNames -Verbose:$Verbose -LogFilesDirectory (Join-Path $root "_logs")
}

2 changes: 1 addition & 1 deletion .github/workflows/Code-Scanning.yml
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ jobs:
WDS_Platform: x64
WDS_WipeOutputs: ${{ true }}
- if: github.event_name == 'push'
run: .\Build-AllSamples.ps1 -Verbose -ThrottleLimit 1
run: .\Build-Samples.ps1 -Verbose -ThrottleLimit 1
env:
WDS_Configuration: Debug
WDS_Platform: x64
Expand Down
16 changes: 0 additions & 16 deletions .github/workflows/StaleIssues.yml

This file was deleted.

2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ jobs:
run: nuget restore .\packages.config -PackagesDirectory .\packages\

- name: Retrieve and build all available solutions
run: .\Build-AllSamples.ps1 -Verbose
run: .\Build-Samples.ps1 -Verbose
env:
WDS_Configuration: ${{ matrix.configuration }}
WDS_Platform: ${{ matrix.platform }}
Expand Down
72 changes: 0 additions & 72 deletions Build-AllSamples.ps1

This file was deleted.

211 changes: 0 additions & 211 deletions Build-Sample.ps1

This file was deleted.

Loading
Loading