Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Build and Test Fixes #182

Merged
merged 3 commits into from
Dec 16, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ jobs:

- name: Build (with ${{ matrix.options }} ${{ matrix.flags }})
run: |
${{ matrix.flags }} meson build ${{ matrix.options }} -Dwerror=true
${{ matrix.flags }} meson setup build ${{ matrix.options }} -Dwerror=true
ninja -C build

- name: Build release
Expand All @@ -43,7 +43,7 @@ jobs:

- name: Install test dependencies
run: |
sudo apt-get install libgirepository1.0-dev nginx-full
sudo apt-get install libcairo2-dev libgirepository1.0-dev nginx-full
python -m pip install --upgrade pip
pip install -r test-requirements.txt

Expand Down Expand Up @@ -78,7 +78,7 @@ jobs:

- name: Meson Build documentation (Sphinx & Doxygen)
run: |
meson build
meson setup build
ninja -C build docs/html
ninja -C build doxygen

Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ Test Suite
Prepare test suite:

```shell
$ sudo apt install libgirepository1.0-dev nginx-full
$ sudo apt install libcairo2-dev libgirepository1.0-dev nginx-full
$ python3 -m venv venv
$ source venv/bin/activate
(venv) $ pip install --upgrade pip
Expand Down
2 changes: 1 addition & 1 deletion meson.build
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ project(
version : '1.3',
meson_version : '>=0.50',
default_options: [
'warning_level=3',
'warning_level=2',
],
license : 'LGPL-2.1-only',
)
Expand Down
Loading