]> git.proxmox.com Git - pve-installer.git/blob - Makefile
test: add tests for zfs_arc_max calculations
[pve-installer.git] / Makefile
1 include /usr/share/dpkg/default.mk
2
3 PACKAGE = proxmox-installer
4 BUILDDIR ?= $(PACKAGE)-$(DEB_VERSION_UPSTREAM)
5
6 DEB=$(PACKAGE)_$(DEB_VERSION)_$(DEB_HOST_ARCH).deb
7 DSC=$(PACKAGE)_$(DEB_VERSION).dsc
8
9 CARGO ?= cargo
10 ifeq ($(BUILD_MODE), release)
11 CARGO_BUILD_ARGS += --release
12 CARGO_COMPILEDIR := target/release
13 else
14 CARGO_COMPILEDIR := target/debug
15 endif
16
17 INSTALLER_SOURCES=$(shell git ls-files) country.dat
18
19 PREFIX = /usr
20 BINDIR = $(PREFIX)/bin
21 USR_BIN := proxmox-tui-installer
22
23 COMPILED_BINS := \
24 $(addprefix $(CARGO_COMPILEDIR)/,$(USR_BIN))
25
26 all:
27
28 $(BUILDDIR):
29 rm -rf $@ $@.tmp; mkdir $@.tmp
30 cp -a \
31 .cargo \
32 Cargo.toml \
33 Makefile \
34 Proxmox/ \
35 Xdefaults \
36 banner/ \
37 checktime \
38 country.pl \
39 fake-start-stop-daemon \
40 html/ \
41 interfaces \
42 policy-disable-rc.d \
43 proxinstall \
44 proxmox-low-level-installer \
45 proxmox-tui-installer/ \
46 proxmox-installer-common/ \
47 spice-vdagent.sh \
48 test/ \
49 unconfigured.sh \
50 xinitrc \
51 $@.tmp
52 cp -a debian $@.tmp/
53 mv $@.tmp $@
54
55 country.dat: country.pl
56 ./country.pl > country.dat.tmp
57 mv country.dat.tmp country.dat
58
59 deb: $(DEB)
60 $(DEB): $(BUILDDIR)
61 cd $(BUILDDIR); dpkg-buildpackage -b -us -uc
62 lintian $(DEB)
63
64 test-$(DEB): $(INSTALLER_SOURCES)
65 rsync --exclude='test*.img' --exclude='*.deb' --exclude='build' -a * build
66 cd build; dpkg-buildpackage -b -us -uc -nc
67 mv $(DEB) test-$(DEB)
68
69 dsc: $(DSC)
70 $(MAKE) clean
71 $(MAKE) $(DSC)
72 lintian $(DSC)
73
74 $(DSC): $(BUILDDIR)
75 cd $(BUILDDIR); dpkg-buildpackage -S -us -uc -d
76
77 sbuild: $(DSC)
78 sbuild $(DSC)
79
80 .PHONY: test
81 test:
82 $(MAKE) -C test check
83 $(CARGO) test --workspace $(CARGO_BUILD_ARGS)
84
85 DESTDIR=
86 VARLIBDIR=$(DESTDIR)/var/lib/proxmox-installer
87 HTMLDIR=$(VARLIBDIR)/html/common
88
89 .PHONY: install
90 install: $(INSTALLER_SOURCES) $(CARGO_COMPILEDIR)/proxmox-tui-installer
91 $(MAKE) -C banner install
92 $(MAKE) -C Proxmox install
93 install -D -m 644 interfaces $(DESTDIR)/etc/network/interfaces
94 install -D -m 755 fake-start-stop-daemon $(VARLIBDIR)/fake-start-stop-daemon
95 install -D -m 755 policy-disable-rc.d $(VARLIBDIR)/policy-disable-rc.d
96 install -D -m 644 country.dat $(VARLIBDIR)/country.dat
97 install -D -m 755 unconfigured.sh $(DESTDIR)/sbin/unconfigured.sh
98 install -D -m 755 proxinstall $(DESTDIR)/usr/bin/proxinstall
99 install -D -m 755 proxmox-low-level-installer $(DESTDIR)/$(BINDIR)/proxmox-low-level-installer
100 $(foreach i,$(USR_BIN), install -m755 $(CARGO_COMPILEDIR)/$(i) $(DESTDIR)$(BINDIR)/)
101 install -D -m 755 checktime $(DESTDIR)/usr/bin/checktime
102 install -D -m 644 xinitrc $(DESTDIR)/.xinitrc
103 install -D -m 755 spice-vdagent.sh $(DESTDIR)/.spice-vdagent.sh
104 install -D -m 644 Xdefaults $(DESTDIR)/.Xdefaults
105
106 $(COMPILED_BINS): cargo-build
107 .PHONY: cargo-build
108 cargo-build:
109 $(CARGO) build --package proxmox-tui-installer --bin proxmox-tui-installer $(CARGO_BUILD_ARGS)
110
111 %-banner.png: %-banner.svg
112 rsvg-convert -o $@ $<
113
114 .PHONY: upload
115 upload: UPLOAD_DIST ?= $(DEB_DISTRIBUTION)
116 upload: $(DEB)
117 tar cf - $(DEB) | ssh -X repoman@repo.proxmox.com -- upload --product pve,pmg,pbs --dist $(UPLOAD_DIST)
118
119 %.img:
120 truncate -s 2G $@
121
122 %.big.img:
123 truncate -s 8G $@
124
125 .PHONY: prepare-check-env
126 prepare-check-env: test-$(DEB)
127 rm -rf testdir
128 dpkg -X test-$(DEB) testdir
129 mkdir -p testdir/run/proxmox-installer/
130
131 cd-info.test: PRODUCT ?= pve
132 cd-info.test:
133 printf '%s\n' "PRODUCT='$(or $(PRODUCT), pve)'" >$@.tmp
134 printf '%s\n' "PRODUCTLONG='$(or $(PRODUCTLONG), Proxmox VE)'" >>$@.tmp
135 printf '%s\n' "RELEASE='$(or $(RELEASE), 42.1)'" >>$@.tmp
136 printf '%s\n' "ISORELEASE='$(or $(ISORELEASE), 1)'" >>$@.tmp
137 printf '%s\n' "ISONAME='$(or $(ISONAME), proxmox-ve)'" >>$@.tmp
138 mv $@.tmp $@
139
140 check-pve: prepare-check-env test.img
141 rm -f cd-info.test; $(MAKE) cd-info.test
142 ./proxmox-low-level-installer dump-env -t
143 G_SLICE=always-malloc perl -I testdir/usr/share/perl5 testdir/usr/bin/proxinstall -t test.img
144
145 check-pve-multidisks: prepare-check-env test.img test2.img test3.img test4.img test5.big.img
146 rm -f cd-info.test; $(MAKE) cd-info.test
147 ./proxmox-low-level-installer dump-env -t
148 G_SLICE=always-malloc perl -I testdir/usr/share/perl5 testdir/usr/bin/proxinstall -t test.img,test2.img,test3.img,test4.img,test5.big.img
149
150 check-pve-tui: prepare-check-env test.img
151 rm -f cd-info.test; $(MAKE) cd-info.test
152 ./proxmox-low-level-installer dump-env -t
153 testdir/usr/bin/proxmox-tui-installer -t test.img 2>testdir/run/stderr
154
155 prepare-check-pmg: prepare-check-env test.img
156 rm -f cd-info.test; $(MAKE) \
157 PRODUCT=pmg \
158 PRODUCTLONG="Proxmox Mail Gateway" \
159 ISONAME='proxmox-mail-gateway' \
160 cd-info.test
161 ./proxmox-low-level-installer dump-env -t
162
163 check-pmg: prepare-check-pmg
164 G_SLICE=always-malloc perl -I testdir/usr/share/perl5 testdir/usr/bin/proxinstall -t test.img
165
166 check-pmg-tui: prepare-check-pmg
167 testdir/usr/bin/proxmox-tui-installer -t test.img 2>testdir/run/stderr
168
169 prepare-check-pbs: prepare-check-env test.img
170 rm -f cd-info.test; $(MAKE) \
171 PRODUCT='pbs' \
172 PRODUCTLONG='Proxmox Backup Server' \
173 ISONAME='proxmox-backup-server' \
174 cd-info.test
175 ./proxmox-low-level-installer dump-env -t
176
177 check-pbs: prepare-check-pbs
178 G_SLICE=always-malloc perl -I testdir/usr/share/perl5 testdir/usr/bin/proxinstall -t test.img
179
180 check-pbs-tui: prepare-check-pbs
181 testdir/usr/bin/proxmox-tui-installer -t test.img 2>testdir/run/stderr
182
183 .phony: clean
184 clean:
185 rm -rf target build $(PACKAGE)-[0-9]* testdir
186 rm -f $(PACKAGE)*.tar* *.deb packages packages.tmp *.build *.dsc *.buildinfo *.changes
187 rm -f test*.img pve-final.pkglist country.dat final.pkglist cd-info.test
188 find . -name '*~' -exec rm {} ';'