2021-08-20 08:54:34 -04:00
|
|
|
name: Meson Build
|
|
|
|
description: Builds Rofi using Meson
|
|
|
|
|
|
|
|
inputs:
|
|
|
|
cc:
|
|
|
|
description: Compiler to use
|
|
|
|
required: true
|
|
|
|
|
|
|
|
runs:
|
|
|
|
using: composite
|
|
|
|
steps:
|
|
|
|
- id: pip
|
|
|
|
run: pip install meson ninja
|
|
|
|
shell: bash
|
|
|
|
- id: setup
|
|
|
|
run: meson setup builddir -Db_coverage=true
|
|
|
|
shell: bash
|
|
|
|
env:
|
|
|
|
CC: ${{ inputs.cc }}
|
|
|
|
- id: build
|
|
|
|
run: ninja -C builddir
|
|
|
|
shell: bash
|
2022-03-16 15:58:37 -04:00
|
|
|
- id: dist
|
|
|
|
run: ninja -C builddir dist
|
|
|
|
shell: bash
|
2021-08-20 08:54:34 -04:00
|
|
|
- id: test
|
|
|
|
run: ninja -C builddir test
|
|
|
|
shell: bash
|
|
|
|
- id: doxy
|
2022-07-27 18:23:21 -04:00
|
|
|
run: ninja -C builddir doc/html > doxygen.log 2>&1
|
2021-08-20 08:54:34 -04:00
|
|
|
shell: bash
|
|
|
|
- id: doxycheck
|
|
|
|
uses: ./.github/actions/doxycheck
|
|
|
|
with:
|
|
|
|
logfile: doxygen.log
|