blob: d266d563ca7b6d597c2e766a6fc4ab11d0d2f049 (
plain)
1
2
3
4
5
6
7
8
9
|
#!/bin/bash
# test pbuilder operation with ccache.
set -e
mkdir work/ccache
chmod 1777 work/ccache
sudo pbuilder build --logfile "$OUTPUT_LOGNAME" --configfile 342665-config work/dsh*.dsc
[ 1 -lt $(find work/ccache | tee -a "$OUTPUT_LOGNAME" | wc -l ) ];
|