-
Notifications
You must be signed in to change notification settings - Fork 10.6k
Win smoke tests #84770
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: main
Are you sure you want to change the base?
Win smoke tests #84770
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,106 @@ | ||
| # Based on https://github.com/swiftlang/swift-docker/blob/main/nightly-main/windows/LTSC2022/Dockerfile | ||
| FROM mcr.microsoft.com/windows/servercore:ltsc2022 | ||
|
|
||
| SHELL ["powershell", "-Command", "$ErrorActionPreference = 'Stop'; $ProgressPreference = 'SilentlyContinue';"] | ||
|
|
||
| # Install Git. | ||
| ARG GIT=https://github.com/git-for-windows/git/releases/download/v2.42.0.windows.2/Git-2.42.0.2-64-bit.exe | ||
| ARG GIT_SHA256=BD9B41641A258FD16D99BEECEC66132160331D685DFB4C714CEA2BCC78D63BDB | ||
| RUN Write-Host -NoNewLine ('Downloading {0} ... ' -f ${env:GIT}); \ | ||
| Invoke-WebRequest -Uri ${env:GIT} -OutFile git.exe; \ | ||
| Write-Host '✓'; \ | ||
| Write-Host -NoNewLine ('Verifying SHA256 ({0}) ... ' -f ${env:GIT_SHA256}); \ | ||
| $Hash = Get-FileHash git.exe -Algorithm sha256; \ | ||
| if ($Hash.Hash -eq ${env:GIT_SHA256}) { \ | ||
| Write-Host '✓'; \ | ||
| } else { \ | ||
| Write-Host ('✘ ({0})' -f $Hash.Hash); \ | ||
| exit 1; \ | ||
| } \ | ||
| Write-Host -NoNewLine 'Installing git ... '; \ | ||
| $Process = \ | ||
| Start-Process git.exe -Wait -PassThru -NoNewWindow -ArgumentList @( \ | ||
| '/SP-', \ | ||
| '/VERYSILENT', \ | ||
| '/SUPPRESSMSGBOXES', \ | ||
| '/NOCANCEL', \ | ||
| '/NORESTART', \ | ||
| '/CLOSEAPPLICATIONS', \ | ||
| '/FORCECLOSEAPPLICATIONS', \ | ||
| '/NOICONS', \ | ||
| '/COMPONENTS="gitlfs"', \ | ||
| '/EditorOption=VIM', \ | ||
| '/PathOption=Cmd', \ | ||
| '/SSHOption=OpenSSH', \ | ||
| '/CURLOption=WinSSL', \ | ||
| '/UseCredentialManager=Enabled', \ | ||
| '/EnableSymlinks=Enabled', \ | ||
| '/EnableFSMonitor=Enabled' \ | ||
| ); \ | ||
| if ($Process.ExitCode -eq 0) { \ | ||
| Write-Host '✓'; \ | ||
| } else { \ | ||
| Write-Host ('✘ ({0})' -f $Process.ExitCode); \ | ||
| exit 1; \ | ||
| } \ | ||
| Remove-Item -Force git.exe; \ | ||
| Remove-Item -ErrorAction SilentlyContinue -Force -Recurse ${env:TEMP}\* | ||
|
|
||
| # Install Visual Studio Build Tools | ||
| ARG VSB=https://download.visualstudio.microsoft.com/download/pr/5536698c-711c-4834-876f-2817d31a2ef2/c792bdb0fd46155de19955269cac85d52c4c63c23db2cf43d96b9390146f9390/vs_BuildTools.exe | ||
| ARG VSB_SHA256=C792BDB0FD46155DE19955269CAC85D52C4C63C23DB2CF43D96B9390146F9390 | ||
| RUN Write-Host -NoNewLine ('Downloading {0} ... ' -f ${env:VSB}); \ | ||
| Invoke-WebRequest -Uri ${env:VSB} -OutFile vs_buildtools.exe; \ | ||
| Write-Host '✓'; \ | ||
| Write-Host -NoNewLine ('Verifying SHA256 ({0}) ... ' -f ${env:VSB_SHA256}); \ | ||
| $Hash = Get-FileHash vs_buildtools.exe -Algorithm sha256; \ | ||
| if ($Hash.Hash -eq ${env:VSB_SHA256}) { \ | ||
| Write-Host '✓'; \ | ||
| } else { \ | ||
| Write-Host ('✘ ({0})' -f $Hash.Hash); \ | ||
| exit 1; \ | ||
| } \ | ||
| Write-Host -NoNewLine 'Installing Visual Studio Build Tools ... '; \ | ||
| $Process = \ | ||
| Start-Process vs_buildtools.exe -Wait -PassThru -NoNewWindow -ArgumentList @( \ | ||
| '--quiet', \ | ||
| '--wait', \ | ||
| '--norestart', \ | ||
| '--nocache', \ | ||
| '--add', 'Microsoft.VisualStudio.Component.Windows11SDK.22000', \ | ||
| '--add', 'Microsoft.VisualStudio.Component.VC.Tools.x86.x64' \ | ||
| ); \ | ||
| if ($Process.ExitCode -eq 0 -or $Process.ExitCode -eq 3010) { \ | ||
| Write-Host '✓'; \ | ||
| } else { \ | ||
| Write-Host ('✘ ({0})' -f $Process.ExitCode); \ | ||
| exit 1; \ | ||
| } \ | ||
| Remove-Item -Force vs_buildtools.exe; \ | ||
| Remove-Item -ErrorAction SilentlyContinue -Force -Recurse ${env:TEMP}\* | ||
|
|
||
| # Build argument for the Swift installer path | ||
| ARG SWIFT_INSTALLER_PATH | ||
|
|
||
| # Copy the Swift installer from the build context | ||
| COPY ${SWIFT_INSTALLER_PATH} installer.exe | ||
|
|
||
| # Install Swift toolchain | ||
| RUN Write-Host -NoNewLine 'Installing Swift ... '; \ | ||
| $Process = \ | ||
| Start-Process installer.exe -Wait -PassThru -NoNewWindow -ArgumentList @( \ | ||
| '/quiet', \ | ||
| '/norestart' \ | ||
| ); \ | ||
| if ($Process.ExitCode -eq 0) { \ | ||
| Write-Host '✓'; \ | ||
| } else { \ | ||
| Write-Host ('✘ ({0})' -f $Process.ExitCode); \ | ||
| exit 1; \ | ||
| } \ | ||
| Remove-Item -Force installer.exe; \ | ||
| Remove-Item -ErrorAction SilentlyContinue -Force -Recurse ${env:TEMP}\* | ||
|
|
||
| COPY smoke_test.ps1 smoke_test.ps1 | ||
|
|
||
| ENTRYPOINT ["powershell", "-File", "./smoke_test.ps1"] |
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,30 @@ | ||
| # Attempts to build and test `swift-win32`. | ||
| $ErrorActionPreference = 'Stop' | ||
|
|
||
| Write-Host "Starting smoke test" | ||
| Write-Host "" | ||
|
|
||
| swift --version | ||
| Write-Host "" | ||
|
|
||
| $RepoUrl = "https://github.com/compnerd/swift-win32" | ||
| $CloneDir = "C:\swift-win32" | ||
|
|
||
| Write-Host "Cloning $RepoUrl" | ||
| git clone $RepoUrl $CloneDir | ||
| if ($LASTEXITCODE -ne 0) { exit $LASTEXITCODE } | ||
| Write-Host "" | ||
|
|
||
| Set-Location $CloneDir | ||
|
|
||
| Write-Host "Building swift-win32" | ||
| swift build | ||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. suggestion: can we inspect the output and ensure it's not empty? I'm asking is this would not have caught the issue reported by: |
||
| if ($LASTEXITCODE -ne 0) { exit $LASTEXITCODE } | ||
| Write-Host "" | ||
|
|
||
| Write-Host "Testing swift-win32" | ||
| swift test -Xswiftc -DENABLE_TESTING | ||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. suggestion: can we inspect the output and ensure it's not empty? I'm asking is this would not have caught the issue reported by: |
||
| if ($LASTEXITCODE -ne 0) { exit $LASTEXITCODE } | ||
| Write-Host "" | ||
|
|
||
| Write-Host "Smoke test completed successfully!" -ForegroundColor Green | ||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
suggestion: can we inspect the output and ensure it's not empty? I'm asking is this would not have caught the issue reported by:
swift --version,swift builddoes not output anything to console and returns immediately #80356