LMail: move cgroup_xattr
into a Lua fenv
#49
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) | |
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 install -y --no-install-recommends \ | |
meson \ | |
libsystemd-dev \ | |
libpq-dev \ | |
libluajit-5.1-dev | |
- name: Configure | |
run: | | |
meson setup \ | |
-Ddocumentation=disabled \ | |
--force-fallback-for=fmt \ | |
-Dwrap_mode=nofallback \ | |
output | |
- name: Build | |
run: ninja -C output -v |