Added clock time
This commit is contained in:
@@ -18,6 +18,16 @@ jobs:
|
||||
- name: Checkout
|
||||
uses: actions/checkout@v4
|
||||
|
||||
- name: Verify Visual Studio ATL
|
||||
shell: powershell
|
||||
run: |
|
||||
$atlHeaders = @(Get-ChildItem -Path "${env:ProgramFiles(x86)}\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC" -Filter atlbase.h -Recurse -ErrorAction SilentlyContinue)
|
||||
if ($atlHeaders.Count -eq 0) {
|
||||
Write-Error "Visual Studio Build Tools is missing ATL. Install the 'C++ ATL for latest v143 build tools (x86 & x64)' component, component ID Microsoft.VisualStudio.Component.VC.ATL, then restart the runner service."
|
||||
exit 1
|
||||
}
|
||||
Write-Host "Found ATL header: $($atlHeaders[0].FullName)"
|
||||
|
||||
- name: Configure Debug
|
||||
shell: powershell
|
||||
run: |
|
||||
@@ -92,6 +102,16 @@ jobs:
|
||||
- name: Checkout
|
||||
uses: actions/checkout@v4
|
||||
|
||||
- name: Verify Visual Studio ATL
|
||||
shell: powershell
|
||||
run: |
|
||||
$atlHeaders = @(Get-ChildItem -Path "${env:ProgramFiles(x86)}\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC" -Filter atlbase.h -Recurse -ErrorAction SilentlyContinue)
|
||||
if ($atlHeaders.Count -eq 0) {
|
||||
Write-Error "Visual Studio Build Tools is missing ATL. Install the 'C++ ATL for latest v143 build tools (x86 & x64)' component, component ID Microsoft.VisualStudio.Component.VC.ATL, then restart the runner service."
|
||||
exit 1
|
||||
}
|
||||
Write-Host "Found ATL header: $($atlHeaders[0].FullName)"
|
||||
|
||||
- name: Build UI
|
||||
shell: powershell
|
||||
working-directory: ui
|
||||
|
||||
Reference in New Issue
Block a user