logo

utils-extra

Collection of extra tools for Unixes
commit: 74b86894a5d49204a9357f39089f1e73234f2951
parent 4f39854af29c965fd251392ce3c4287408466966
Author: Haelwenn (lanodan) Monnier <contact@hacktivis.me>
Date:   Tue, 26 Sep 2023 17:43:48 +0200

.builds: Import

Diffstat:

A.builds/freebsd.yml23+++++++++++++++++++++++
A.builds/netbsd.yml23+++++++++++++++++++++++
2 files changed, 46 insertions(+), 0 deletions(-)

diff --git a/.builds/freebsd.yml b/.builds/freebsd.yml @@ -0,0 +1,23 @@ +# SPDX-FileCopyrightText: 2017-2022 Haelwenn (lanodan) Monnier <contact+utils@hacktivis.me> +# SPDX-License-Identifier: MPL-2.0 + +image: freebsd/latest +packages: + - pkgconf + - kyua + - gcc +sources: + - https://hacktivis.me/git/utils.git +tasks: + - clang: | + cd utils + CC=clang ./configure + make clean test + - gcc: | + cd utils + CC=gcc ./configure + make clean test +triggers: + - action: email + condition: failure + to: contact+builds.sr.ht@hacktivis.me diff --git a/.builds/netbsd.yml b/.builds/netbsd.yml @@ -0,0 +1,23 @@ +# SPDX-FileCopyrightText: 2017-2023 Haelwenn (lanodan) Monnier <contact+utils@hacktivis.me> +# SPDX-License-Identifier: MPL-2.0 + +image: netbsd/latest +packages: + - pkg-config + - kyua + - clang +sources: + - https://hacktivis.me/git/utils.git +tasks: + - clang: | + cd utils + CC=clang ./configure + DESTDIR=/tmp/clang-destdir make clean test + - gcc: | + cd utils + CC=gcc ./configure + DESTDIR=/tmp/gcc-destdir make clean test +triggers: + - action: email + condition: failure + to: contact+builds.sr.ht@hacktivis.me