Skip to content

Commit dd20bca

Browse files
crohrgithub-actions[bot]
authored andcommitted
Sync from upstream
1 parent fde50c0 commit dd20bca

File tree

15 files changed

+42
-85
lines changed

15 files changed

+42
-85
lines changed
Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
#!/bin/bash -e
2+
################################################################################
3+
## File: list-dpkg.sh
4+
## Desc: List all installed dpkg packages
5+
################################################################################
6+
7+
echo "Listing all installed dpkg packages..."
8+
dpkg-query -W -f='${Package} ${Version}\n' | sort

releases/ubuntu22/arm64/images/ubuntu/scripts/tests/RunnerCache.Tests.ps1

Lines changed: 0 additions & 7 deletions
This file was deleted.
Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
#!/bin/bash -e
2+
################################################################################
3+
## File: list-dpkg.sh
4+
## Desc: List all installed dpkg packages
5+
################################################################################
6+
7+
echo "Listing all installed dpkg packages..."
8+
dpkg-query -W -f='${Package} ${Version}\n' | sort

releases/ubuntu22/x64/images/ubuntu/scripts/tests/RunnerCache.Tests.ps1

Lines changed: 0 additions & 7 deletions
This file was deleted.
Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
#!/bin/bash -e
2+
################################################################################
3+
## File: list-dpkg.sh
4+
## Desc: List all installed dpkg packages
5+
################################################################################
6+
7+
echo "Listing all installed dpkg packages..."
8+
dpkg-query -W -f='${Package} ${Version}\n' | sort

releases/ubuntu24/arm64/images/ubuntu/scripts/tests/RunnerCache.Tests.ps1

Lines changed: 0 additions & 7 deletions
This file was deleted.
Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
#!/bin/bash -e
2+
################################################################################
3+
## File: list-dpkg.sh
4+
## Desc: List all installed dpkg packages
5+
################################################################################
6+
7+
echo "Listing all installed dpkg packages..."
8+
dpkg-query -W -f='${Package} ${Version}\n' | sort

releases/ubuntu24/x64/images/ubuntu/scripts/tests/RunnerCache.Tests.ps1

Lines changed: 0 additions & 7 deletions
This file was deleted.

releases/windows22/x64/images/windows/scripts/build/Install-NativeImages.ps1

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,19 +4,19 @@
44
################################################################################
55

66
Write-Host "NGen: install Microsoft.PowerShell.Utility.Activities..."
7-
& $env:SystemRoot\Microsoft.NET\Framework64\v4.0.30319\ngen.exe install "Microsoft.PowerShell.Utility.Activities, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" | Out-Null
7+
& $env:SystemRoot\Microsoft.NET\Framework64\v4.0.30319\ngen.exe install "Microsoft.PowerShell.Utility.Activities, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
88
if ($LASTEXITCODE -ne 0) {
99
throw "Installation of Microsoft.PowerShell.Utility.Activities failed with exit code $LASTEXITCODE"
1010
}
1111

1212
Write-Host "NGen: update x64 native images..."
13-
& $env:SystemRoot\Microsoft.NET\Framework64\v4.0.30319\ngen.exe update | Out-Null
13+
& $env:SystemRoot\Microsoft.NET\Framework64\v4.0.30319\ngen.exe update
1414
if ($LASTEXITCODE -ne 0) {
1515
throw "Update of x64 native images failed with exit code $LASTEXITCODE"
1616
}
1717

1818
Write-Host "NGen: update x86 native images..."
19-
& $env:SystemRoot\Microsoft.NET\Framework\v4.0.30319\ngen.exe update | Out-Null
19+
& $env:SystemRoot\Microsoft.NET\Framework\v4.0.30319\ngen.exe update
2020
if ($LASTEXITCODE -ne 0) {
2121
throw "Update of x86 native images failed with exit code $LASTEXITCODE"
2222
}

releases/windows22/x64/images/windows/scripts/build/Install-Runner.ps1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ $fileName = Split-Path $downloadUrl -Leaf
1313
New-Item -Path "C:\ProgramData\runner" -ItemType Directory
1414
Invoke-DownloadWithRetry -Url $downloadUrl -Path "C:\ProgramData\runner\$fileName"
1515

16-
# removed: Invoke-PesterTests
16+
# removed: # removed: Invoke-PesterTests
1717
# Patched into Install-Runner.ps1
1818

1919
# Create runner user

0 commit comments

Comments
 (0)