aboutsummaryrefslogtreecommitdiffstats
path: root/test-build-fedora.sh
diff options
context:
space:
mode:
Diffstat (limited to 'test-build-fedora.sh')
-rwxr-xr-xtest-build-fedora.sh10
1 files changed, 10 insertions, 0 deletions
diff --git a/test-build-fedora.sh b/test-build-fedora.sh
new file mode 100755
index 00000000..ecb5263a
--- /dev/null
+++ b/test-build-fedora.sh
@@ -0,0 +1,10 @@
+#!/bin/sh
+exec podman run --rm -it fedora:rawhide sh -c '
+ dnf upgrade -y --refresh &&
+ dnf install automake bison flex gcc gettext-devel git openssl-devel -y &&
+ git clone https://gitlab.com/fetchmail/fetchmail.git &&
+ cd fetchmail &&
+ autoreconf -svif &&
+ ./configure -C &&
+ make -sj20 check &&
+ ./fetchmail -V'