commit: 3c95c5c93007f3c322d02b2ac86bf76f66eb0376
parent 18f0b81fc072237e00b9303d1c23c7dd0521569e
Author: Haelwenn (lanodan) Monnier <contact@hacktivis.me>
Date: Thu, 26 Dec 2024 08:32:52 +0100
.builds/archlinux.yml: new
Diffstat:
2 files changed, 24 insertions(+), 1 deletion(-)
diff --git a/.builds/archlinux.yml b/.builds/archlinux.yml
@@ -0,0 +1,23 @@
+# SPDX-FileCopyrightText: 2017 Haelwenn (lanodan) Monnier <contact+utils@hacktivis.me>
+# SPDX-License-Identifier: MPL-2.0
+
+image: archlinux
+packages:
+ - clang
+ - python-cram
+sources:
+ - https://anongit.hacktivis.me/git/utils-std.git
+tasks:
+ - info: "uname -a"
+ - clang: |
+ cd utils-std
+ CC=clang ./configure
+ make clean check
+ - gcc: |
+ cd utils-std
+ CC=gcc ./configure
+ make clean check
+triggers:
+ - action: email
+ condition: failure
+ to: contact+builds.sr.ht@hacktivis.me
diff --git a/README.md b/README.md
@@ -8,7 +8,7 @@ SPDX-License-Identifier: MPL-2.0
This is my own collection of commonly available Unix utilities, most of them implemented by me.
POSIX is used as a guide, but current Unix systems are the biggest inspiration and compatibility with portable scripts is intended.
-Developed on Linux+musl, automatically tested on FreeBSD and NetBSD thanks to [SourceHut](https://builds.sr.ht/~lanodan/utils-std).
+Developed on Linux+musl, automatically tested on FreeBSD, NetBSD and ArchLinux thanks to [SourceHut](https://builds.sr.ht/~lanodan/utils-std).
## Dependencies
- C99 Compiler + POSIX.1-2017 C Library (POSIX.1-2024 recommended)