From 7908bf23e20c9d32308d0e4d39063e678dc4575b Mon Sep 17 00:00:00 2001 From: Rick Vogel Date: Mon, 3 Apr 2023 10:24:18 +0200 Subject: [PATCH] fix smoke test windows --- .github/workflows/cmake.yml | 15 +++++++++------ 1 file changed, 9 insertions(+), 6 deletions(-) diff --git a/.github/workflows/cmake.yml b/.github/workflows/cmake.yml index 111586f1..e57f979b 100644 --- a/.github/workflows/cmake.yml +++ b/.github/workflows/cmake.yml @@ -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')