From fa97292e8d7c2ad0df42aacf72e1385ddc6dd529 Mon Sep 17 00:00:00 2001 From: Dave Davenport Date: Mon, 30 Aug 2021 10:45:43 +0200 Subject: [PATCH] [CI] Test meson build from dist. (#1389) --- .github/actions/autotools/action.yml | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/.github/actions/autotools/action.yml b/.github/actions/autotools/action.yml index 66e0dcf0..db95fd3c 100644 --- a/.github/actions/autotools/action.yml +++ b/.github/actions/autotools/action.yml @@ -9,6 +9,9 @@ inputs: runs: using: composite steps: + - id: pip + run: pip install meson ninja + shell: bash - id: setup run: | autoreconf --install @@ -30,6 +33,14 @@ runs: uses: ./.github/actions/doxycheck with: logfile: builddir/doxygen.log + - id: meson-dist-check + shell: bash + run: | + tar xf builddir/rofi-*.tar.gz + cd rofi-*/ + meson setup . build + ninja -C build + ninja -C build test - id: upload uses: actions/upload-artifact@v2 with: