Skip to content

net/LocalSocketAddress: new class wrapping struct sockaddr_un #280

net/LocalSocketAddress: new class wrapping struct sockaddr_un

net/LocalSocketAddress: new class wrapping struct sockaddr_un #280

Workflow file for this run

---
on:
workflow_dispatch:
push:
paths-ignore:
- 'debian/**'
- 'doc/**'
- 'subprojects/**'
branches:
- master
pull_request:
paths-ignore:
- 'debian/**'
- 'doc/**'
- '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
- name: Install dependencies
run: |
sudo apt-get update
sudo apt-get install -y --no-install-recommends \
openssh-client openssh-sftp-server \
dropbear-bin \
python3-paramiko \
ruby-net-ssh \
meson \
ccache \
libgtest-dev \
libcap-dev \
libseccomp-dev \
libsystemd-dev \
libavahi-client-dev \
libmd-dev \
libsodium-dev
- id: cache-ccache
uses: hendrikmuhs/ccache-action@v1
with:
key: ${{github.job}}
- name: Configure
run: |
meson setup \
-Dauto_features=enabled \
-Ddocumentation=disabled \
-Dtest=true \
--force-fallback-for=fmt,libcrypto,nlohmann_json \
-Dwrap_mode=nofallback \
output
- name: Build
run: ninja -C output -v
- name: Unit Tests
run: meson test -C output
- name: Dump Unit Test Log
if: ${{ failure() }}
continue-on-error: true
run: cat output/meson-logs/testlog.txt
- name: Connect Tests
run: ./test/test_lukko.py output
mini:
runs-on: ubuntu-latest
steps:
- id: checkout
uses: actions/checkout@v4
with:
submodules: recursive
- name: Install dependencies
run: |
sudo apt-get update
sudo apt-get install -y --no-install-recommends \
meson \
ccache \
libgtest-dev \
libsodium-dev
- id: cache-ccache
uses: hendrikmuhs/ccache-action@v1
with:
key: ${{github.job}}
- name: Configure
run: |
meson setup \
-Dauto_features=disabled \
-Dtest=true \
-Dtranslation=false \
-Dcontrol=false \
--force-fallback-for=fmt \
-Dwrap_mode=nofallback \
output
- name: Build
run: ninja -C output -v
- name: Unit Tests
run: meson test -C output
- name: Dump Unit Test Log
if: ${{ failure() }}
continue-on-error: true
run: cat output/meson-logs/testlog.txt