Skip to content

update libcommon

update libcommon #14

Workflow file for this run

---
on:
workflow_dispatch:
push:
paths-ignore:
- 'debian/**'
- 'doc/**'
branches:
- master
pull_request:
paths-ignore:
- 'debian/**'
- 'doc/**'
branches:
- master
permissions:
contents: read # to fetch code (actions/checkout)
env:
CC: 'ccache gcc-10'
CXX: 'ccache g++-10'
jobs:
build:
runs-on: ubuntu-latest
steps:
- id: checkout
uses: actions/checkout@v3
with:
submodules: recursive
- id: cache-ccache
uses: hendrikmuhs/ccache-action@v1
with:
key: ${{ matrix.os }}-${{ matrix.type }}
- name: Install dependencies
run: |
sudo apt install -y \
g++-10 \
libfmt-dev \
libsystemd-dev \
libluajit-5.1-dev \
libgtest-dev
- name: Meson Build
uses: BSFishy/[email protected]
with:
action: test
setup-options: -Ddocumentation=disabled
meson-version: 0.56.0