This commit is contained in:
Faraz Fallahi
2020-06-06 16:50:44 -04:00
parent 62f9fd016d
commit a42a4f6238
13 changed files with 105 additions and 70 deletions

23
build.sh Normal file
View File

@@ -0,0 +1,23 @@
#!/bin/bash
set -euxo pipefail
# Ubuntu dynamically linked
docker build --force-rm -f Dockerfile -t fffaraz/qt:latest .
# Ubuntu statically linked
docker build --force-rm -f Dockerfile.static -t fffaraz/qt:static .
# MXE (M cross environment)
docker build --force-rm -f Dockerfile.mxe -t fffaraz/qt:mxe .
# Windows 32bit statically linked
docker build --force-rm -f Dockerfile.win32s -t fffaraz/qt:latest .
# Windows 64bit statically linked
docker build --force-rm -f Dockerfile.win64s -t fffaraz/qt:static .
# Windows 32bit dynamically linked
docker build --force-rm -f Dockerfile.win32d -t fffaraz/qt:latest .
# Windows 64bit dynamically linked
docker build --force-rm -f Dockerfile.win64d -t fffaraz/qt:static .