-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
10 changed files
with
2,993 additions
and
8 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,44 @@ | ||
name: Tests | ||
|
||
on: | ||
push: | ||
branches: | ||
- main | ||
- develop | ||
pull_request: | ||
branches: | ||
- main | ||
- develop | ||
|
||
jobs: | ||
run-tests: | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- name: Checkout code | ||
uses: actions/checkout@v2 | ||
|
||
- name: Update apt-get database | ||
run: | | ||
sudo apt-get update -y | ||
sudo apt-get upgrade -y | ||
- name: Install build dependencies | ||
run: sudo apt-get install -y clang ninja-build git cmake | ||
|
||
- name: Install Qt dependencies | ||
run: | | ||
sudo apt-get -y install build-essential openssl libssl-dev libssl1.0 libgl1-mesa-dev libvulkan-dev libxkbcommon-dev libqt5x11extras5 '^libxcb.*-dev' libx11-xcb-dev libglu1-mesa-dev libxrender-dev libxi-dev libxkbcommon-dev libxkbcommon-x11-dev | ||
- name: Install project dependencies | ||
run: sudo apt-get install -y libboost-all-dev libspdlog-dev qt6-base-dev qt6-multimedia-dev | ||
|
||
- name: Build project | ||
run: | | ||
cmake -S . -B build -G Ninja -DCMAKE_BUILD_TYPE=Release -DBUILD_TESTS=ON | ||
cmake --build build | ||
- name: Run tests | ||
env: | ||
QT_MEDIA_BACKEND: ffmpeg | ||
run: ctest --test-dir ./build --verbose |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.