2018-12-06 01:11:56 +05:30
|
|
|
#!/bin/bash
|
|
|
|
# Copyright (c) 2007-2018 The OpenRC Authors.
|
|
|
|
# See the Authors file at the top-level directory of this distribution and
|
2021-12-21 06:37:00 +05:30
|
|
|
# https://github.com/OpenRC/openrc/blob/HEAD/AUTHORS
|
2018-12-06 01:11:56 +05:30
|
|
|
#
|
|
|
|
# This file is part of OpenRC. It is subject to the license terms in
|
|
|
|
# the LICENSE file found in the top-level directory of this
|
2021-12-21 06:37:00 +05:30
|
|
|
# distribution and at https://github.com/OpenRC/openrc/blob/HEAD/LICENSE
|
2018-12-06 01:11:56 +05:30
|
|
|
# This file may not be copied, modified, propagated, or distributed
|
|
|
|
# except according to the terms contained in the LICENSE file.
|
|
|
|
|
|
|
|
set -e
|
|
|
|
set -u
|
|
|
|
set -x
|
|
|
|
|
|
|
|
# These are steps to run on Cirrus CI under a jailed FreeBSD system.
|
|
|
|
# See $TOP/.cirrus.yml for more info about the Cirrus CI setup.
|
|
|
|
|
2021-12-31 06:07:19 +05:30
|
|
|
meson build
|
|
|
|
meson compile -C build
|
2022-04-17 01:43:08 +05:30
|
|
|
meson test --verbose -C build
|