fix smoke test windows
This commit is contained in:
parent
ce7bb75ab3
commit
7908bf23e2
|
@ -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')
|
||||
|
|
Loading…
Reference in New Issue