2024-01-15 18:56:41 +03:00
|
|
|
name: Build & Test
|
2023-12-28 21:31:57 +03:00
|
|
|
|
|
|
|
on:
|
|
|
|
push:
|
2024-07-08 16:38:35 +03:00
|
|
|
branches: [ "develop" ]
|
2023-12-28 21:31:57 +03:00
|
|
|
pull_request:
|
2024-07-08 16:38:35 +03:00
|
|
|
branches: [ "develop" ]
|
2023-12-28 21:31:57 +03:00
|
|
|
|
|
|
|
env:
|
|
|
|
# Customize the CMake build type here (Release, Debug, RelWithDebInfo, etc.)
|
2024-08-02 16:50:03 +03:00
|
|
|
BUILD_TYPE: Debug
|
2023-12-28 21:31:57 +03:00
|
|
|
|
|
|
|
jobs:
|
|
|
|
build:
|
|
|
|
# The CMake configure and build commands are platform agnostic and should work equally well on Windows or Mac.
|
|
|
|
# You can convert this to a matrix build if you need cross-platform coverage.
|
|
|
|
# See: https://docs.github.com/en/free-pro-team@latest/actions/learn-github-actions/managing-complex-workflows#using-a-build-matrix
|
2024-08-02 16:50:03 +03:00
|
|
|
runs-on: ubuntu-24.04
|
2023-12-28 21:31:57 +03:00
|
|
|
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v3
|
|
|
|
|
|
|
|
- name: Add PPA
|
2024-05-02 17:14:16 +03:00
|
|
|
run: |
|
2024-08-13 15:06:36 +03:00
|
|
|
sudo apt-add-repository ppa:mir-team/release
|
2024-05-16 19:01:59 +03:00
|
|
|
sudo add-apt-repository ppa:ubuntu-toolchain-r/test
|
2024-05-02 17:14:16 +03:00
|
|
|
sudo apt update
|
2023-12-28 21:31:57 +03:00
|
|
|
|
|
|
|
- name: Install dependencies
|
2024-05-02 17:14:16 +03:00
|
|
|
run: |
|
2024-05-16 19:01:59 +03:00
|
|
|
sudo apt install gcc-13 g++-13
|
2024-05-02 17:14:16 +03:00
|
|
|
sudo update-alternatives --install /usr/bin/gcc gcc /usr/bin/gcc-13 100 --slave /usr/bin/g++ g++ /usr/bin/g++-13
|
|
|
|
sudo apt install libmiral-dev libmircommon-internal-dev libmircommon-dev libmirserver-internal-dev \
|
2024-05-04 00:19:02 +03:00
|
|
|
libgtest-dev libyaml-cpp-dev libglib2.0-dev libevdev-dev nlohmann-json3-dev libnotify-dev pcre2-utils \
|
2024-09-03 22:35:39 +03:00
|
|
|
libmiroil-dev libmirrenderer-dev libgles2-mesa-dev libmirwayland-dev libjson-c-dev
|
2024-08-24 22:25:51 +03:00
|
|
|
|
|
|
|
sudo apt install mir-platform-graphics-virtual xwayland \
|
2024-10-07 20:54:13 +03:00
|
|
|
mir-platform-graphics-gbm-kms mir-platform-rendering-egl-generic gedit gnome-chess
|
2023-12-28 21:31:57 +03:00
|
|
|
|
|
|
|
- name: Configure CMake
|
|
|
|
run: cmake -B ${{github.workspace}}/build -DCMAKE_BUILD_TYPE=${{env.BUILD_TYPE}}
|
|
|
|
|
|
|
|
- name: Build
|
2024-05-02 17:14:16 +03:00
|
|
|
run: cmake --build ${{github.workspace}}/build --config ${{env.BUILD_TYPE}}
|
2024-01-15 18:56:41 +03:00
|
|
|
|
2024-08-24 22:25:51 +03:00
|
|
|
- name: Install
|
|
|
|
run: sudo cmake --install ${{github.workspace}}/build --config ${{env.BUILD_TYPE}}
|
|
|
|
|
|
|
|
- name: Unit Tests
|
2024-01-15 18:56:41 +03:00
|
|
|
run: cd ${{github.workspace}}/build && ./bin/miracle-wm-tests
|
2024-04-11 15:31:43 +03:00
|
|
|
|
2024-08-24 22:25:51 +03:00
|
|
|
- name: IPC Tests
|
2024-10-07 20:54:13 +03:00
|
|
|
if: false
|
2024-08-24 22:25:51 +03:00
|
|
|
run: |
|
|
|
|
cd ${{github.workspace}}/tests/ipc
|
|
|
|
python -m venv venv
|
|
|
|
source venv/bin/activate
|
|
|
|
pip install -r requirements.txt
|
|
|
|
MIRACLE_IPC_TEST_BIN=/usr/local/bin/miracle-wm pytest -s
|
|
|
|
|
2024-04-11 15:31:43 +03:00
|
|
|
- name: Check Licenses
|
|
|
|
run: python tools/check_license.py
|