Skip to content

Commit

Permalink
Merge pull request #182 from Bastian-Krause/bst/fixes
Browse files Browse the repository at this point in the history
Build and Test Fixes
  • Loading branch information
Bastian-Krause authored Dec 16, 2024
2 parents fd2e05f + 8304c09 commit 8d94615
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
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

0 comments on commit 8d94615

Please sign in to comment.