diff options
author | Sam James <sam@gentoo.org> | 2024-03-12 21:42:46 +0000 |
---|---|---|
committer | Sam James <sam@gentoo.org> | 2024-03-12 21:42:56 +0000 |
commit | 91b74fc8105b7e08a04da4daef9283fc69bf5f85 (patch) | |
tree | 95c44c4d973413ce27c2791cf0b30fb8c9c7797a | |
parent | meson: make tests optional (diff) | |
download | gentoolkit-91b74fc8105b7e08a04da4daef9283fc69bf5f85.tar.gz gentoolkit-91b74fc8105b7e08a04da4daef9283fc69bf5f85.tar.bz2 gentoolkit-91b74fc8105b7e08a04da4daef9283fc69bf5f85.zip |
ci: enable new test option
See 988e47557368df49035eeba94beca893f7b267c1.
Bug: https://bugs.gentoo.org/926427
Signed-off-by: Sam James <sam@gentoo.org>
-rw-r--r-- | .github/workflows/ci.yml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 803dfde..871d4aa 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -50,7 +50,7 @@ jobs: - name: Test meson install --destdir /tmp/install-root run: | echo -e "[binaries]\npython = '$(command -v python)'" > /tmp/native.ini - meson setup --native-file /tmp/native.ini /tmp/build . + meson setup -Dtests=true --native-file /tmp/native.ini /tmp/build . meson install -C /tmp/build --destdir /tmp/install-root - name: Run tests for ${{ matrix.python-version }} run: | |