Skip to content

quote client-specified strings for logging #164

quote client-specified strings for logging

quote client-specified strings for logging #164

Workflow file for this run

---
on:
workflow_dispatch:
push:
paths-ignore:
- 'debian/**'
- 'subprojects/**'
branches:
- master
pull_request:
paths-ignore:
- 'debian/**'
- 'subprojects/**'
branches:
- master
permissions:
contents: read # to fetch code (actions/checkout)
jobs:
build:
runs-on: ubuntu-latest
steps:
- id: checkout
uses: actions/checkout@v4
with:
submodules: recursive
- id: cache-ccache
uses: hendrikmuhs/ccache-action@v1
- name: Install dependencies
run: |
sudo apt-get update
sudo apt-get install -y --no-install-recommends \
meson \
libsystemd-dev \
libpq-dev \
libmd-dev \
libsodium-dev \
libluajit-5.1-dev
- name: Configure
run: |
meson setup \
-Ddocumentation=disabled \
-Dopenssl=enabled \
-Dsystemd=enabled \
-Dpg=enabled \
--force-fallback-for=fmt,nlohmann_json \
-Dwrap_mode=nofallback \
output
- name: Build
run: ninja -C output -v