-
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,939 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,41 @@ | ||
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 | ||
|
||
- name: Install build dependencies | ||
run: sudo apt-get install -y clang ninja-build git cmake | ||
|
||
- name: Install project dependencies | ||
run: sudo apt-get install -y libboost-all-dev libspdlog-dev qt6-base-dev qt6-multimedia-dev libgl1-mesa-dev libvulkan-dev libxkbcommon-dev ffmpeg baresip-ffmpeg libffmpeg-nvenc-dev libffmpeg-nvenc-dev libqt6quicktimeline6 libqt6quicktimeline6-dev | ||
|
||
- name: Build project | ||
env: | ||
CC: clang | ||
CXX: clang++ | ||
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.