2018-12-05 11:41:56 -08:00
|
|
|
#!/bin/bash
|
|
|
|
# Copyright (c) 2007-2018 The OpenRC Authors.
|
|
|
|
# See the Authors file at the top-level directory of this distribution and
|
2021-12-20 20:07:00 -05:00
|
|
|
# https://github.com/OpenRC/openrc/blob/HEAD/AUTHORS
|
2018-12-05 11:41:56 -08:00
|
|
|
#
|
|
|
|
# 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-20 20:07:00 -05:00
|
|
|
# distribution and at https://github.com/OpenRC/openrc/blob/HEAD/LICENSE
|
2018-12-05 11:41:56 -08:00
|
|
|
# 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-30 18:37:19 -06:00
|
|
|
meson build
|
|
|
|
meson compile -C build
|
2022-04-16 15:13:08 -05:00
|
|
|
meson test --verbose -C build
|