summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPeter Mikkelsen <petermikkelsen10@gmail.com>2025-11-12 22:37:37 +0100
committerPeter Mikkelsen <petermikkelsen10@gmail.com>2025-11-12 22:37:37 +0100
commit4b948514d3d67e4c746b69510f44c15dbfe8898e (patch)
tree0f94ec257f2e640ac2c239553cc67cb04e929969
parent3ae76402fab4e129a054eab1c03be59be9362c92 (diff)
More builds
-rw-r--r--.builds/debian.yml17
-rw-r--r--.builds/fedora.yml18
2 files changed, 35 insertions, 0 deletions
diff --git a/.builds/debian.yml b/.builds/debian.yml
new file mode 100644
index 0000000..e877fb6
--- /dev/null
+++ b/.builds/debian.yml
@@ -0,0 +1,17 @@
+image: debian/stable
+packages:
+- autoconf
+- automake
+- libtool
+sources:
+- https://git.sr.ht/~pmikkelsen/aplwc
+tasks:
+- build: |
+ cd aplwc
+ ./bootstrap.sh
+ ./configure
+ make
+- test: |
+ cd aplwc
+ make check
+ make distcheck
diff --git a/.builds/fedora.yml b/.builds/fedora.yml
new file mode 100644
index 0000000..4bc9e58
--- /dev/null
+++ b/.builds/fedora.yml
@@ -0,0 +1,18 @@
+image: fedora/rawhide
+packages:
+- autoconf
+- automake
+- libtool
+- awk
+sources:
+- https://git.sr.ht/~pmikkelsen/aplwc
+tasks:
+- build: |
+ cd aplwc
+ ./bootstrap.sh
+ ./configure
+ make
+- test: |
+ cd aplwc
+ make check
+ make distcheck