mirror of
https://github.com/miracle-wm-org/miracle-wm.git
synced 2024-11-26 03:02:28 +03:00
cd4a6efa54
* Refactored GET_TREE tremendously so that it returns a tree with proper, parseable values * Wrote IPC tests but had to disable them in CI until further notice
63 lines
2.2 KiB
YAML
63 lines
2.2 KiB
YAML
name: Build & Test
|
|
|
|
on:
|
|
push:
|
|
branches: [ "develop" ]
|
|
pull_request:
|
|
branches: [ "develop" ]
|
|
|
|
env:
|
|
# Customize the CMake build type here (Release, Debug, RelWithDebInfo, etc.)
|
|
BUILD_TYPE: Debug
|
|
|
|
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
|
|
runs-on: ubuntu-24.04
|
|
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
|
|
- name: Add PPA
|
|
run: |
|
|
sudo apt-add-repository ppa:mir-team/release
|
|
sudo add-apt-repository ppa:ubuntu-toolchain-r/test
|
|
sudo apt update
|
|
|
|
- name: Install dependencies
|
|
run: |
|
|
sudo apt install gcc-13 g++-13
|
|
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 \
|
|
libgtest-dev libyaml-cpp-dev libglib2.0-dev libevdev-dev nlohmann-json3-dev libnotify-dev pcre2-utils \
|
|
libmiroil-dev libmirrenderer-dev libgles2-mesa-dev libmirwayland-dev libjson-c-dev
|
|
|
|
sudo apt install mir-platform-graphics-virtual xwayland \
|
|
mir-platform-graphics-gbm-kms mir-platform-rendering-egl-generic gedit gnome-chess
|
|
|
|
- name: Configure CMake
|
|
run: cmake -B ${{github.workspace}}/build -DCMAKE_BUILD_TYPE=${{env.BUILD_TYPE}}
|
|
|
|
- name: Build
|
|
run: cmake --build ${{github.workspace}}/build --config ${{env.BUILD_TYPE}}
|
|
|
|
- name: Install
|
|
run: sudo cmake --install ${{github.workspace}}/build --config ${{env.BUILD_TYPE}}
|
|
|
|
- name: Unit Tests
|
|
run: cd ${{github.workspace}}/build && ./bin/miracle-wm-tests
|
|
|
|
- name: IPC Tests
|
|
if: false
|
|
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
|
|
|
|
- name: Check Licenses
|
|
run: python tools/check_license.py
|