mirror of
https://github.com/davatorium/rofi.git
synced 2024-11-11 13:50:48 -05:00
33 lines
669 B
YAML
33 lines
669 B
YAML
|
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
|
||
|
- id: test
|
||
|
run: ninja -C builddir test
|
||
|
shell: bash
|
||
|
- id: doxy
|
||
|
run: ninja -C builddir doc/html 2>&1 > doxygen.log
|
||
|
shell: bash
|
||
|
- id: doxycheck
|
||
|
uses: ./.github/actions/doxycheck
|
||
|
with:
|
||
|
logfile: doxygen.log
|