Skip to content

Commit

Permalink
Run CI tests on windows/arm64 agents (go-delve#3198)
Browse files Browse the repository at this point in the history
  • Loading branch information
qmuntal authored Nov 17, 2022
1 parent 2391601 commit a185d0e
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 0 deletions.
3 changes: 3 additions & 0 deletions .teamcity/settings.kts
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,9 @@ val targets = arrayOf(
"windows/amd64/1.19",
"windows/amd64/tip",

"windows/arm64/1.19",
"windows/arm64/tip",

"mac/amd64/1.19",
"mac/amd64/tip",

Expand Down
5 changes: 5 additions & 0 deletions _scripts/test_windows.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,11 @@ param (

Set-MpPreference -DisableRealtimeMonitoring $true

if ($arch -eq "arm64") {
# TODO: Remove when TeamCity subproject for windows/arm64 is set up.
Exit 0
}

# Install Chocolatey
#Set-ExecutionPolicy Bypass -Scope Process -Force; [System.Net.ServicePointManager]::SecurityProtocol = [System.Net.ServicePointManager]::SecurityProtocol -bor 3072; iex ((New-Object System.Net.WebClient).DownloadString('https://chocolatey.org/install.ps1'))

Expand Down

0 comments on commit a185d0e

Please sign in to comment.