This commit is contained in:
Ross Scroggs
2026-04-26 13:43:53 -07:00
2 changed files with 37 additions and 21 deletions

View File

@@ -690,20 +690,6 @@ jobs:
echo "GAM Version ${GAMVERSION}"
echo "GAMVERSION=${GAMVERSION}" >> $GITHUB_ENV
- name: Initialize Windows Desktop Shell
if: runner.os == 'Windows'
shell: pwsh
run: |
Write-Host "Checking for Windows Explorer shell..."
if (-not (Get-Process -Name explorer -ErrorAction SilentlyContinue)) {
Write-Host "Explorer not found. Booting the desktop shell..."
Start-Process explorer.exe
# Give the desktop a few seconds to fully render the taskbar
Start-Sleep -Seconds 10
} else {
Write-Host "Explorer is already running."
}
- name: Install NPM deps
if: runner.os == 'Windows'
run: |
@@ -716,8 +702,8 @@ jobs:
if: runner.os == 'Windows'
shell: pwsh
run: |
$url = "https://files.certum.eu/software/SimplySignDesktop/Windows/9.4.2.86/SimplySignDesktop-9.4.2.86-64-bit-en.msi"
#$url = "https://files.certum.eu/software/SimplySignDesktop/Windows/9.4.3.90/SimplySignDesktop-9.4.3.90-64-bit-en.msi"
#$url = "https://files.certum.eu/software/SimplySignDesktop/Windows/9.4.2.86/SimplySignDesktop-9.4.2.86-64-bit-en.msi"
$url = "https://files.certum.eu/software/SimplySignDesktop/Windows/9.4.3.90/SimplySignDesktop-9.4.3.90-64-bit-en.msi"
$file = "SimplySignDesktop.msi"
Invoke-WebRequest $url -OutFile $file
$log = "install.log"
@@ -726,6 +712,15 @@ jobs:
$procMain.WaitForExit()
$procLog.Kill()
- name: Run SSD directly
if: runner.os == 'Windows'
shell: pwsh
run: |
Write-Host "Running SSD..."
& "C:\\Program Files\\Certum\\SimplySign Desktop\\SimplySignDesktop.exe"
Start-Sleep -Seconds 10
& "C:\\Program Files\\Certum\\SimplySign Desktop\\SimplySignDesktop.exe"
- name: Login to Certum
if: runner.os == 'Windows'
shell: pwsh
@@ -738,7 +733,7 @@ jobs:
write-host "sleeping during login..."
Start-Sleep 10
- name: Archive png artifacts
- name: Archive artifacts
uses: actions/upload-artifact@bbbca2ddaa5d8feaa63e36b76fdaad77386f024f # 7.0.0
if: runner.os == 'Windows'
with:
@@ -747,6 +742,7 @@ jobs:
if-no-files-found: ignore
path: |
${{ github.workspace }}/*.png
${{ github.workspace }}/*.log
- name: Sign gam.exe
if: runner.os == 'Windows'

View File

@@ -75,13 +75,33 @@ async function takeScreenshot(filename) {
}
}
}
// Fire and forget application launcher
// Fire and forget application launcher with logging
function launchSSD() {
const workspace = process.env.GITHUB_WORKSPACE || process.cwd();
const outLogPath = path.join(workspace, 'ssd_out.log');
const errLogPath = path.join(workspace, 'ssd_err.log');
// Open file descriptors for logging
const out = fs.openSync(outLogPath, 'a');
const err = fs.openSync(errLogPath, 'a');
console.log(`Launching SSD... Logging stdout to ${outLogPath} and stderr to ${errLogPath}`);
const child = spawn('C:\\Program Files\\Certum\\SimplySign Desktop\\SimplySignDesktop.exe', [], {
detached: true,
stdio: 'ignore'
detached: true,
// stdio array: [stdin, stdout, stderr]
// We ignore stdin, and pipe stdout/stderr to our files
stdio: ['ignore', out, err]
});
child.unref();
// Catch immediate errors (e.g., file not found, permission denied)
child.on('error', (error) => {
console.error('Failed to spawn SimplySign Desktop:', error.message);
});
// Unreference the child so the parent script can exit
child.unref();
}
async function runSSD() {