mirror of
https://github.com/postgrespro/pg_probackup.git
synced 2024-11-30 09:47:53 +02:00
a454bd7d63
* adding testing of packages for PG-14 * updating postgres versions * adding reprepro config and rpmmacros to git * fixing forgotten rhel repo signing and package testing * adding alt-8 package testing * removing debian-8, ubuntu-14.04 and ubuntu-16.04 packaging * s/PGPRO Standart/PGPRO Standard/g
58 lines
1.2 KiB
Makefile
58 lines
1.2 KiB
Makefile
# CENTOS 7
|
|
build/centos_7_9.5:
|
|
$(call build_rpm,centos,7,,9.5,9.5.25)
|
|
touch build/centos_7_9.5
|
|
|
|
build/centos_7_9.6:
|
|
$(call build_rpm,centos,7,,9.6,9.6.24)
|
|
touch build/centos_7_9.6
|
|
|
|
build/centos_7_10:
|
|
$(call build_rpm,centos,7,,10,10.19)
|
|
touch build/centos_7_10
|
|
|
|
build/centos_7_11:
|
|
$(call build_rpm,centos,7,,11,11.14)
|
|
touch build/centos_7_11
|
|
|
|
build/centos_7_12:
|
|
$(call build_rpm,centos,7,,12,12.9)
|
|
touch build/centos_7_12
|
|
|
|
build/centos_7_13:
|
|
$(call build_rpm,centos,7,,13,13.5)
|
|
touch build/centos_7_13
|
|
|
|
build/centos_7_14:
|
|
$(call build_rpm,centos,7,,14,14.1)
|
|
touch build/centos_7_14
|
|
|
|
# CENTOS 8
|
|
build/centos_8_9.5:
|
|
$(call build_rpm,centos,8,,9.5,9.5.25)
|
|
touch build/centos_8_9.5
|
|
|
|
build/centos_8_9.6:
|
|
$(call build_rpm,centos,8,,9.6,9.6.24)
|
|
touch build/centos_8_9.6
|
|
|
|
build/centos_8_10:
|
|
$(call build_rpm,centos,8,,10,10.19)
|
|
touch build/centos_8_10
|
|
|
|
build/centos_8_11:
|
|
$(call build_rpm,centos,8,,11,11.14)
|
|
touch build/centos_8_11
|
|
|
|
build/centos_8_12:
|
|
$(call build_rpm,centos,8,,12,12.9)
|
|
touch build/centos_8_12
|
|
|
|
build/centos_8_13:
|
|
$(call build_rpm,centos,8,,13,13.5)
|
|
touch build/centos_8_13
|
|
|
|
build/centos_8_14:
|
|
$(call build_rpm,centos,8,,14,14.1)
|
|
touch build/centos_8_14
|