blob: 4d1ef3c63a16ea8c4e631d976993dd7d198732f8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
|
#!/bin/bash
# Quit immediately if any part fails
set -e
## To get to this stage you need to already have the pbuilder-dist stuff installed, and have already run:
# for distro in squeeze sid lucid maverick; do
# for arch in i386 amd64; do
# pbuilder-dist $distro $arch create
# done
# done
export SWIFT_DEBUILD_FLAGS="-S"
export SWIFT_FORCE_LUCID="yep"
#./package.sh
#for distro in lucid squeeze; do
# for arch in i386 amd64; do
# pbuilder-dist $distro $arch build *.dsc
# done
#done
unset SWIFT_FORCE_LUCID
./package.sh
for distro in trusty xenial jessie sid; do
for arch in amd64; do
pbuilder-dist $distro $arch build *.dsc
done
done
|