Skip to content

Commit

Permalink
test
Browse files Browse the repository at this point in the history
  • Loading branch information
Thilas committed Nov 1, 2023
1 parent 5dea0f8 commit 7cc000f
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 3 deletions.
5 changes: 4 additions & 1 deletion .github/workflows/ilspy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,9 +34,12 @@ jobs:
force: ${{ inputs.type == 'Force update' }}
test_cases: |
- Start ILSpy
Start-Process ILSpy
Start-Process ILSpy -PassThru
$sw = [System.Diagnostics.Stopwatch]::StartNew()
while ($sw.ElapsedMilliseconds -lt 30000) {
$sw | out-host
Get-Process ILSpy* | out-host
Get-Process ILSpy* | % MainWindowHandle | out-host
if (Get-Process ILSpy* | Where-Object MainWindowHandle -NE 0) {
return
}
Expand Down
4 changes: 3 additions & 1 deletion .github/workflows/vscodium-insiders.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,9 +36,11 @@ jobs:
force: ${{ inputs.type == 'Force update' }}
test_cases: |
- Run codium-insiders --version
Write-Host "Path: $env:Path"
Get-Command codium | Out-Host
codium-insiders --version
- Start VSCodium
codium-insiders
Start-Process codium-insiders
$sw = [System.Diagnostics.Stopwatch]::StartNew()
while ($sw.ElapsedMilliseconds -lt 30000) {
if (Get-Process "VSCodium - Insiders" -ErrorAction SilentlyContinue | Where-Object MainWindowHandle -NE 0) {
Expand Down
4 changes: 3 additions & 1 deletion .github/workflows/vscodium.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,9 +36,11 @@ jobs:
force: ${{ inputs.type == 'Force update' }}
test_cases: |
- Run codium --version
Write-Host "Path: $env:Path"
Get-Command codium | Out-Host
codium --version
- Start VSCodium
codium
Start-Process codium
$sw = [System.Diagnostics.Stopwatch]::StartNew()
while ($sw.ElapsedMilliseconds -lt 30000) {
if (Get-Process VSCodium -ErrorAction SilentlyContinue | Where-Object MainWindowHandle -NE 0) {
Expand Down

0 comments on commit 7cc000f

Please sign in to comment.