From c5988bad456d6dedc560bfc9b429fcb5d2861f89 Mon Sep 17 00:00:00 2001 From: Alexey Sokolov Date: Sat, 11 Jan 2025 23:33:29 +0000 Subject: [PATCH] CI: use destdir --- .github/workflows/run-tests.yml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/workflows/run-tests.yml b/.github/workflows/run-tests.yml index d6a8efb..3ce42b8 100644 --- a/.github/workflows/run-tests.yml +++ b/.github/workflows/run-tests.yml @@ -24,7 +24,7 @@ jobs: - name: Install deps run: | apt update - apt install -y libgtk-4-dev rustup meson gettext blueprint-compiler desktop-file-utils libxml2-utils + apt install -y libgtk-4-dev rustup meson gettext blueprint-compiler libxml2-utils # TODO: Once this porting project is done, switch to stable - run: rustup update --no-self-update nightly && rustup default nightly @@ -33,7 +33,8 @@ jobs: uses: mozilla-actions/sccache-action@v0.0.3 - run: meson setup build - - run: meson install -C build + - run: meson compile -C build + - run: DESTDIR=/tmp/inst meson install -C build - run: cargo test --verbose - uses: giraffate/clippy-action@v1