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