Skip to content

Commit a4602da

Browse files
committed
test unixaio
1 parent 33d332f commit a4602da

1 file changed

Lines changed: 25 additions & 21 deletions

File tree

script/build_unix_aio.sh

Lines changed: 25 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -34,12 +34,12 @@ f() {
3434
wget $D/install/$F
3535
wget $D/qtide/$I
3636
wget $D/qtlib/$L
37-
unzip $F
38-
unzip $L
37+
unzip -q $F
38+
unzip -q $L
3939
cd $V
4040
mv ../Qt .
4141
cd bin
42-
unzip ../../$I
42+
unzip -q ../../$I
4343
cd ../..
4444
id="$W/mac64_AIO${t}.zip"
4545
buildlist+="${id},"
@@ -49,29 +49,33 @@ f() {
4949
f ""
5050
f "slim"
5151

52+
echo "after mac builds: $buildlist"
53+
5254
# linux ----------------------------------------------------------------
53-
f () {
55+
f() {
5456
if [[ "slim" = "$1" ]]; then
5557
s="-slim";
5658
t="_slim";
5759
fi
58-
rm -rf $T/$V/*
59-
I=jqt-linux${s}.tar.gz
60-
L=qt68-linux${s}.tar.gz
61-
wget $D/install/$F
62-
wget $D/qtide/$I
63-
wget $D/qtlib/$L
64-
tar -xvf $F
65-
tar -xvf $L
66-
cd $V
67-
rm -rf Qt
68-
mv ../Qt .
69-
cd bin
70-
tar -xvf ../../$I
71-
cd ../..
72-
id="$W/linux64_AIO${t}.tar.gz"
73-
buildlist+="${id},"
74-
tar -cvf - $V | gzip -9 - > $id
60+
rm -rf $T/$V/*
61+
cd $T
62+
F=${V}_linux64.zip
63+
I=jqt-linux${s}.tar.gz
64+
L=qt68-linux${s}.tar.gz
65+
wget $D/install/$F
66+
wget $D/qtide/$I
67+
wget $D/qtlib/$L
68+
tar -xf $F
69+
tar -xf $L
70+
cd $V
71+
rm -rf Qt
72+
mv ../Qt .
73+
cd bin
74+
tar -xf ../../$I
75+
cd ../..
76+
id="$W/linux64_AIO${t}.tar.gz"
77+
buildlist+="${id},"
78+
tar -cf - $V | gzip -9 - > $id
7579
}
7680

7781
f ""

0 commit comments

Comments
 (0)