Skip to content
Snippets Groups Projects
Verified Commit 2384743d authored by Tomas Krizek's avatar Tomas Krizek Committed by Petr Špaček
Browse files
parent 16f12b6e
Branches
Tags
1 merge request!1099ci: move macOS build to GitHub Actions
Pipeline #72644 canceled with stages
in 3 minutes and 18 seconds
# SPDX-License-Identifier: GPL-3.0-or-later
language: c
os:
- osx
osx_image: xcode10.2
addons:
homebrew:
packages:
- cmocka
- luajit
- libuv
- lmdb
- meson
- nghttp2
update: true
compiler:
- clang
notifications:
email:
on_success: never
on_failure: never
jobs:
fast_finish: true
env:
global:
- KNOT_DNS_VERSION=3.0
- MALLOC_CHECK_=3
- MALLOC_PERTURB_=223
before_script:
- git clone -b ${KNOT_DNS_VERSION} https://gitlab.nic.cz/knot/knot-dns.git
- cd knot-dns
- autoreconf -fi
- ./configure --disable-static --disable-fastparser --disable-documentation --disable-daemon --disable-utilities --with-lmdb=no
- make -j2 install
- cd ..
script:
- meson build_darwin --default-library=static --buildtype=debugoptimized --prefix=${HOME}/.local/usr -Dc_args='-fno-omit-frame-pointer'
- ninja -C build_darwin -v install
- meson test -C build_darwin --suite unit
- ${HOME}/.local/usr/sbin/kresd -h
- ${HOME}/.local/usr/sbin/kresd -V
- echo "quit()" | ${HOME}/.local/usr/sbin/kresd -a 127.0.0.1@53535 .
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment