mirror of
https://github.com/postgrespro/pg_probackup.git
synced 2024-12-03 09:59: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
# RHEL 7
|
|
build/rhel_7_9.5:
|
|
$(call build_rpm,rhel,7,7Server,9.5,9.5.25)
|
|
touch build/rhel_7_9.5
|
|
|
|
build/rhel_7_9.6:
|
|
$(call build_rpm,rhel,7,7Server,9.6,9.6.24)
|
|
touch build/rhel_7_9.6
|
|
|
|
build/rhel_7_10:
|
|
$(call build_rpm,rhel,7,7Server,10,10.19)
|
|
touch build/rhel_7_10
|
|
|
|
build/rhel_7_11:
|
|
$(call build_rpm,rhel,7,7Server,11,11.14)
|
|
touch build/rhel_7_11
|
|
|
|
build/rhel_7_12:
|
|
$(call build_rpm,rhel,7,7Server,12,12.9)
|
|
touch build/rhel_7_12
|
|
|
|
build/rhel_7_13:
|
|
$(call build_rpm,rhel,7,7Server,13,13.5)
|
|
touch build/rhel_7_13
|
|
|
|
build/rhel_7_14:
|
|
$(call build_rpm,rhel,7,7Server,14,14.1)
|
|
touch build/rhel_7_14
|
|
|
|
# RHEL 8
|
|
build/rhel_8_9.5:
|
|
$(call build_rpm,rhel,8,8Server,9.5,9.5.25)
|
|
touch build/rhel_8_9.5
|
|
|
|
build/rhel_8_9.6:
|
|
$(call build_rpm,rhel,8,8Server,9.6,9.6.24)
|
|
touch build/rhel_8_9.6
|
|
|
|
build/rhel_8_10:
|
|
$(call build_rpm,rhel,8,8Server,10,10.19)
|
|
touch build/rhel_8_10
|
|
|
|
build/rhel_8_11:
|
|
$(call build_rpm,rhel,8,8Server,11,11.14)
|
|
touch build/rhel_8_11
|
|
|
|
build/rhel_8_12:
|
|
$(call build_rpm,rhel,8,8Server,12,12.9)
|
|
touch build/rhel_8_12
|
|
|
|
build/rhel_8_13:
|
|
$(call build_rpm,rhel,8,8Server,13,13.5)
|
|
touch build/rhel_8_13
|
|
|
|
build/rhel_8_14:
|
|
$(call build_rpm,rhel,8,8Server,14,14.1)
|
|
touch build/rhel_8_14
|