mirror of
https://github.com/davatorium/rofi.git
synced 2024-11-18 13:54:36 -05:00
[CI] Do dist check via ninja
This commit is contained in:
parent
f088d75ee4
commit
d9490fddbe
2 changed files with 7 additions and 4 deletions
8
.github/actions/autotools/action.yml
vendored
8
.github/actions/autotools/action.yml
vendored
|
@ -36,14 +36,14 @@ runs:
|
|||
uses: ./.github/actions/doxycheck
|
||||
with:
|
||||
logfile: builddir/doxygen.log
|
||||
- id: meson-dist-check
|
||||
- id: autoconf-dist-check
|
||||
shell: bash
|
||||
run: |
|
||||
tar xf builddir/rofi-*.tar.gz
|
||||
cd rofi-*/
|
||||
meson setup . build
|
||||
ninja -C build
|
||||
ninja -C build test
|
||||
./configure
|
||||
make
|
||||
make check
|
||||
- id: upload
|
||||
uses: actions/upload-artifact@v2
|
||||
with:
|
||||
|
|
3
.github/actions/meson/action.yml
vendored
3
.github/actions/meson/action.yml
vendored
|
@ -20,6 +20,9 @@ runs:
|
|||
- id: build
|
||||
run: ninja -C builddir
|
||||
shell: bash
|
||||
- id: dist
|
||||
run: ninja -C builddir dist
|
||||
shell: bash
|
||||
- id: test
|
||||
run: ninja -C builddir test
|
||||
shell: bash
|
||||
|
|
Loading…
Reference in a new issue