-
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
11 changed files
with
3,011 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,45 @@ | ||
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 project dependencies | ||
run: sudo apt-get install -y libboost-all-dev libspdlog-dev | ||
|
||
- name: Install Qt | ||
env: | ||
QT_INSTALLER_JWT_TOKEN: ${{ secrets.QT_INSTALLER_JWT_TOKEN }} | ||
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 | ||
./scripts/install-qt | ||
- name: Build project | ||
run: | | ||
cmake -S . -B build -G Ninja -DCMAKE_BUILD_TYPE=Release -DBUILD_TESTS=ON | ||
cmake --build build | ||
- name: Run tests | ||
run: ctest --test-dir ./build --verbose |
Oops, something went wrong.