aboutsummaryrefslogtreecommitdiffstats
path: root/test-build-fedora.sh
blob: ecb5263a68b455d9ee63470b0f46781b9a299694 (plain)
1
2
3
4
5
6
7
8
9
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'