subprojects: update fmt to 9.1.0-2 #16
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--- | |
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 |