fix smoke test windows

This commit is contained in:
Rick Vogel 2023-04-03 10:24:18 +02:00
parent ce7bb75ab3
commit 7908bf23e2
1 changed files with 9 additions and 6 deletions

View File

@ -8,7 +8,7 @@ name: CMake Build Matrix
on:
push:
branches: [cmake]
branches: [cmake_uwe]
pull_request:
branches: [master]
@ -369,6 +369,11 @@ jobs:
shell: bash
run: cmake --install qskinny_build --prefix qskinny_install --strip --config ${{ matrix.config.build_type }}
- name: Smoke test ( QSkinny ) Setup Env
run: |
echo "$GITHUB_WORKSPACE/qskinny_install/lib" >> $GITHUB_PATH
echo "$GITHUB_WORKSPACE/qskinny_install/plugins/skins" >> $GITHUB_PATH
- name: Smoke test ( QSkinny ) on MacOS
if: startsWith(matrix.config.name, 'macOS')
run: |
@ -379,11 +384,9 @@ jobs:
- name: Smoke Test ( QSkinny ) on Windows
if: startsWith(matrix.config.name, 'Windows')
run: |
$Env:PATH += ";qskinny_install/lib"
$Env:PATH += ";qskinny_install/plugins/skins"
echo "starting iotdashboard"
Start-Process qskinny_build\examples\iotdashboard\Release\iotdashboard.exe -ArgumentList "-qwindowgeometry 1024x600+0+0"
Start-Sleep -s 10
dir iotdashboard.exe -S
echo "starting iotdashboard"
Start-Process qskinny_build\Release\iotdashboard.exe -ArgumentList "-qwindowgeometry 1024x600+0+0"
- name: Smoke test ( QSkinny ) on Ubuntu
if: startsWith(matrix.config.name, 'Ubuntu')