Skip to content

Commit

Permalink
More
Browse files Browse the repository at this point in the history
  • Loading branch information
DonLakeFlyer committed Jan 31, 2025
1 parent 5f72995 commit 937dff0
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 2 deletions.
5 changes: 5 additions & 0 deletions .github/workflows/linux.yml
Original file line number Diff line number Diff line change
Expand Up @@ -103,6 +103,11 @@ jobs:
working-directory: ${{ runner.temp }}/shadow_build_dir
run: cmake --install . --config ${{ matrix.BuildType }}

- name: Sanity check release excecutable
if: matrix.BuildType == 'Release'
working-directory: ${{ runner.temp }}\shadow_build_dir
run: xvfb-run -a ./${{ env.ARTIFACT }} --simple-boot-test

- name: Run unit tests
if: matrix.BuildType == 'Debug'
working-directory: ${{ runner.temp }}/shadow_build_dir
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/macos.yml
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ jobs:
working-directory: ${{ runner.temp }}/shadow_build_dir
run: cmake --build . --target all --config ${{ matrix.BuildType }}

- name: Sanity check excecutable
- name: Sanity check release excecutable
if: matrix.BuildType == 'Release'
working-directory: ${{ runner.temp }}/shadow_build_dir/Release/QGroundControl.app/Contents/MacOS
run: ./QGroundControl --simple-boot-test
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/windows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@ jobs:
working-directory: ${{ runner.temp }}\shadow_build_dir
run: cmake --build . --target all --config ${{ matrix.BuildType }}

- name: Sanity check excecutable
- name: Sanity check release excecutable
if: matrix.BuildType == 'Release'
working-directory: ${{ runner.temp }}\shadow_build_dir\Release
run: QGroundControl.exe --simple-boot-test
Expand Down

0 comments on commit 937dff0

Please sign in to comment.